mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 07:52:17 +02:00
Locale migration, Lilligant shiny stone
This commit is contained in:
parent
bb7d9961ae
commit
25099d28e7
@ -1395,8 +1395,8 @@ export const pokemonEvolutions: PokemonEvolutions = {
|
|||||||
new SpeciesEvolution(Species.WHIMSICOTT, 1, EvolutionItem.SUN_STONE, null, SpeciesWildEvolutionDelay.LONG)
|
new SpeciesEvolution(Species.WHIMSICOTT, 1, EvolutionItem.SUN_STONE, null, SpeciesWildEvolutionDelay.LONG)
|
||||||
],
|
],
|
||||||
[Species.PETILIL]: [
|
[Species.PETILIL]: [
|
||||||
new SpeciesEvolution(Species.HISUI_LILLIGANT, 1, EvolutionItem.SUN_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.VERY_LONG),
|
new SpeciesEvolution(Species.HISUI_LILLIGANT, 1, EvolutionItem.SHINY_STONE, null, SpeciesWildEvolutionDelay.VERY_LONG),
|
||||||
new SpeciesEvolution(Species.LILLIGANT, 1, EvolutionItem.SUN_STONE, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY), SpeciesWildEvolutionDelay.LONG)
|
new SpeciesEvolution(Species.LILLIGANT, 1, EvolutionItem.SUN_STONE, null, SpeciesWildEvolutionDelay.LONG)
|
||||||
],
|
],
|
||||||
[Species.BASCULIN]: [
|
[Species.BASCULIN]: [
|
||||||
new SpeciesFormEvolution(Species.BASCULEGION, "white-striped", "female", 40, null, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE), SpeciesWildEvolutionDelay.VERY_LONG),
|
new SpeciesFormEvolution(Species.BASCULEGION, "white-striped", "female", 40, null, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE), SpeciesWildEvolutionDelay.VERY_LONG),
|
||||||
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const caEsConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const deConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,472 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description: "Erhalte {{pokeballName}} x{{modifierCount}}. (Inventar: {{pokeballAmount}}) \nFangrate: {{catchRate}}",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
|
||||||
description: "Erhalte {{voucherTypeName}} x{{modifierCount}}.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}} kann dieses\nItem nicht nehmen!",
|
|
||||||
"tooMany": "{{pokemonName}} hat zu viele\nvon diesem Item!",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "Füllt {{restorePoints}} KP oder {{restorePercent}}% der KP für ein Pokémon auf. Je nachdem, welcher Wert höher ist.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Füllt die KP eines Pokémon wieder vollständig auf.",
|
|
||||||
"fullyWithStatus": "Füllt die KP eines Pokémon wieder vollständig auf und behebt alle Statusprobleme.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "Belebt ein kampunfähiges Pokémon wieder und stellt {{restorePercent}}% KP wieder her.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "Behebt alle Statusprobleme eines Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "Füllt {{restorePoints}} AP der ausgewählten Attacke eines Pokémon auf.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Füllt alle AP der ausgewählten Attacke eines Pokémon auf.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "Stellt {{restorePoints}} AP für alle Attacken eines Pokémon auf.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Füllt alle AP für alle Attacken eines Pokémon auf.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "Erhöht die maximale Anzahl der AP der ausgewählten Attacke um {{upPoints}} für jede 5 maximale AP (maximal 3).",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "{{natureName}} Minze",
|
|
||||||
description: "Ändert das Wesen zu {{natureName}}. Schaltet dieses Wesen permanent für diesen Starter frei.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "Verdoppelt die Wahrscheinlichkeit, dass die nächsten {{battleCount}} Begegnungen mit wilden Pokémon ein Doppelkampf sind.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "Erhöht die {{tempBattleStatName}} aller Teammitglieder für 5 Kämpfe um eine Stufe.",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "Erhöht die Stärke aller {{moveType}}-Attacken eines Pokémon um 20%.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "Erhöht das Level eines Pokémon um {{levels}}.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "Erhöht das Level aller Teammitglieder um {{levels}}.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "Erhöht den {{statName}} Basiswert des Trägers um 10%. Das Stapellimit erhöht sich, je höher dein IS-Wert ist.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "Stellt 100% der KP aller Pokémon her.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "Belebt alle kampunfähigen Pokémon wieder und stellt ihre KP vollständig wieder her.",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description:"Gewährt einen {{moneyMultiplier}} Geldbetrag von (₽{{moneyAmount}}).",
|
|
||||||
extra: {
|
|
||||||
"small": "kleinen",
|
|
||||||
"moderate": "moderaten",
|
|
||||||
"large": "großen",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "Erhöht die erhaltenen Erfahrungspunkte um {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "Erhöht die Menge der erhaltenen Erfahrungspunkte für den Träger um {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "Erhöht den Freundschaftszuwachs pro Sieg um 50%.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "Erhöht die Genauigkeit der Angriffe um {{accuracyAmount}} (maximal 100).",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "Attacken treffen ein weiteres mal mit einer Reduktion von 60/75/82,5% der Stärke.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "Bringt einem Pokémon {{moveName}} bei.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "Bringt einem Pokémon {{moveName}} bei\n(Halte C oder Shift für mehr Infos).",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "Erlaubt es bestimmten Pokémon sich zu entwickeln.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "Erlaubt es bestimmten Pokémon ihre Form zu ändern.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "Fusioniert zwei Pokémon (überträgt die Fähigkeit, teilt Basiswerte und Typ auf, gemeinsamer Attackenpool).",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "{{teraType}} Terra-Stück",
|
|
||||||
description: "{{teraType}} Terakristallisiert den Träger für bis zu 10 Kämpfe.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description:"Beim Angriff besteht eine {{chancePercent}}%ige Chance, dass das getragene Item des Gegners gestohlen wird."
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "Jede Runde erhält der Träger ein getragenes Item des Gegners.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "Fügt Angriffen eine {{chancePercent}}%ige Chance hinzu, {{statusEffect}} zu verursachen.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "Gibt den Träger eine {{chancePercent}}%ige Chance, einen Angriff zu überleben.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Sonderbonbon" },
|
|
||||||
"RARER_CANDY": { name: "Supersondererbonbon" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "Mega-Armband", description: "Mega-Steine werden verfügbar." },
|
|
||||||
"DYNAMAX_BAND": { name: "Dynamax-Band", description: "Dyna-Pilze werden verfügbar."},
|
|
||||||
"TERA_ORB": { name: "Terakristall-Orb", description: "Tera-Stücke werden verfügbar." },
|
|
||||||
|
|
||||||
"MAP": { name: "Karte", description: "Ermöglicht es dir, an einer Kreuzung dein Ziel zu wählen." },
|
|
||||||
|
|
||||||
"POTION": { name: "Trank" },
|
|
||||||
"SUPER_POTION": { name: "Supertrank" },
|
|
||||||
"HYPER_POTION": { name: "Hypertrank" },
|
|
||||||
"MAX_POTION": { name: "Top-Trank" },
|
|
||||||
"FULL_RESTORE": { name: "Top-Genesung" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "Beleber" },
|
|
||||||
"MAX_REVIVE": { name: "Top-Beleber" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Hyperheiler" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Zauberasche" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Belebersamen", description: "Belebt den Träger mit der Hälfte seiner KP wieder, sollte er durch einen direkten Treffer kampfunfähig werden." },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "Schlohkraut", description: "Ein Item zum Tragen. Es hebt einmalig jede negative Statuswertveränderung auf." },
|
|
||||||
|
|
||||||
"ETHER": { name: "Äther" },
|
|
||||||
"MAX_ETHER": { name: "Top-Äther" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "Elixir" },
|
|
||||||
"MAX_ELIXIR": { name: "Top-Elixir" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "AP-Plus" },
|
|
||||||
"PP_MAX": { name: "AP-Top" },
|
|
||||||
|
|
||||||
"LURE": { name: "Lockparfüm" },
|
|
||||||
"SUPER_LURE": { name: "Super-Lockparfüm" },
|
|
||||||
"MAX_LURE": { name: "Top-Lockparfüm" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Erinnerungspilz", description: "Lässt ein Pokémon eine vergessene Attacke wiedererlernen." },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "EP-Teiler", description: "Pokémon, die nicht am Kampf teilgenommen haben, bekommen 20% der Erfahrungspunkte eines Kampfteilnehmers." },
|
|
||||||
"EXP_BALANCE": { name: "EP-Ausgleicher", description: "Gewichtet die in Kämpfen erhaltenen Erfahrungspunkte auf niedrigstufigere Gruppenmitglieder." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Ovalpin", description: "Wenn mehrere Pokémon am Kampf teilnehmen, erhählt jeder von ihnen 10% extra Erfahrungspunkte." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "EP-Pin" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "Super-EP-Pin" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "Goldener EP-Pin" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Glücks-Ei" },
|
|
||||||
"GOLDEN_EGG": { name: "Goldenes Ei" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Sanftglocke" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "Scope-Linse", description: "Ein Item zum Tragen. Es erhöht die Volltrefferquote." },
|
|
||||||
"LEEK": { name: "Lauchstange", description: "Ein Item, das von Porenta getragen werden kann. Diese lange Lauchstange erhöht die Volltrefferquote stark." },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "Evolith", description: "Ein mysteriöser Klumpen, der die Vert. u. Spez.-Vert. von Pokémon erhöht, die sich noch entwickeln können." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Seelentau", description: "Erhöht den Einfluss des Wesens eines Pokemon auf seine Werte um 10% (additiv)." },
|
|
||||||
|
|
||||||
"NUGGET": { name: "Nugget" },
|
|
||||||
"BIG_NUGGET": { name: "Riesennugget" },
|
|
||||||
"RELIC_GOLD": { name: "Alter Dukat" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Münzamulett", description: "Erhöht das Preisgeld um 20%." },
|
|
||||||
"GOLDEN_PUNCH": { name: "Goldschlag", description: "Gewährt Geld in Höhe von 50% des zugefügten Schadens." },
|
|
||||||
"COIN_CASE": { name: "Münzkorb", description: "Erhalte nach jedem 10ten Kampf 10% Zinsen auf dein Geld." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Tresorkapsel", description: "Erlaubt es die Seltenheitsstufe der Items festzusetzen wenn diese neu gerollt werden." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Griffklaue" },
|
|
||||||
"WIDE_LENS": { name: "Großlinse" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Mehrfachlinse" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "Heilungspin", description: "Erhöht die Effektivität von Heilungsattacken sowie Heilitems um 10% (Beleber ausgenommen)." },
|
|
||||||
"CANDY_JAR": { name: "Bonbonglas", description: "Erhöht die Anzahl der Level die ein Sonderbonbon erhöht um 1." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Beerentüte", description: "Fügt eine 30% Chance hinzu, dass Beeren nicht verbraucht werden." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Fokusband", description: "Fügt eine 10% Chance hinzu, dass Angriffe die zur Kampfunfähigkeit führen mit 1 KP überlebt werden." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Flinkklaue", description: "Fügt eine 10% Change hinzu als erster anzugreifen. (Nach Prioritätsangriffen)." },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "King-Stein", description: "Fügt eine 10% Chance hinzu, dass der Gegner nach einem Angriff zurückschreckt." },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "Überreste", description: "Heilt 1/16 der maximalen KP eines Pokémon pro Runde." },
|
|
||||||
"SHELL_BELL": { name: "Muschelglocke", description: "Heilt den Anwender um 1/8 des von ihm zugefügten Schadens." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "Toxik-Orb", description: "Dieser bizarre Orb vergiftet seinen Träger im Kampf schwer." },
|
|
||||||
"FLAME_ORB": { name: "Heiß-Orb", description: "Dieser bizarre Orb fügt seinem Träger im Kampf Verbrennungen zu." },
|
|
||||||
|
|
||||||
"BATON": { name: "Stab", description: "Ermöglicht das Weitergeben von Effekten beim Wechseln von Pokémon, wodurch auch Fallen umgangen werden." },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "Schillerpin", description: "Erhöht die Chance deutlich, dass ein wildes Pokémon ein schillernd ist." },
|
|
||||||
"ABILITY_CHARM": { name: "Fähigkeitspin", description: "Erhöht die Chance deutlich, dass ein wildes Pokémon eine versteckte Fähigkeit hat." },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "IS-Scanner", description: "Erlaubt es die IS-Werte von wilden Pokémon zu scannen.\n(2 IS-Werte pro Staplung. Die besten IS-Werte zuerst)." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "DNS-Keil" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Mini schwarzes Loch" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Goldener Pokéball", description: "Fügt eine zusätzliche Item-Auswahlmöglichkeit nach jedem Kampf hinzu." },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "Schadensmarke", description: "Erhöht den Schaden um 5%." },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "Schutzmarke", description: "Verringert den erhaltenen Schaden um 2,5%." },
|
|
||||||
"ENEMY_HEAL": { name: "Wiederherstellungsmarke", description: "Heilt 2% der maximalen KP pro Runde." },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "Giftmarke" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { "name": "Lähmungsmarke" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { "name": "Brandmarke" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "Vollheilungsmarke", "description": "Fügt eine 2,5%ige Chance hinzu, jede Runde einen Statuszustand zu heilen." },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { "name": "Ausdauer-Marke" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { "name": "Fusionsmarke", "description": "Fügt eine 1%ige Chance hinzu, dass ein wildes Pokémon eine Fusion ist." },
|
|
||||||
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "Kugelblitz", description: "Ein Item, das von Pikachu getragen werden kann. Es erhöht den Angriff und den Spezial-Angriff." },
|
|
||||||
"THICK_CLUB": { name: "Kampfknochen", description: "Ein Item, das von Tragosso oder Knogga getragen werden kann. Dieser harte Knochen erhöht den Angriff." },
|
|
||||||
"METAL_POWDER": { name: "Metallstaub", description: "Ein Item, das von Ditto getragen werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Verteidigung." },
|
|
||||||
"QUICK_POWDER": { name: "Flottstaub", description: "Ein Item, das Ditto zum Tragen gegeben werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Initiative." }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "X-Angriff",
|
|
||||||
"x_defense": "X-Verteidigung",
|
|
||||||
"x_sp_atk": "X-Sp.-Ang.",
|
|
||||||
"x_sp_def": "X-Sp.-Vert.",
|
|
||||||
"x_speed": "X-Tempo",
|
|
||||||
"x_accuracy": "X-Treffer",
|
|
||||||
"dire_hit": "X-Volltreffer",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "Angriff",
|
|
||||||
"DEF": "Verteidigung",
|
|
||||||
"SPATK": "Sp. Ang",
|
|
||||||
"SPDEF": "Sp. Vert",
|
|
||||||
"SPD": "Initiative",
|
|
||||||
"ACC": "Genauigkeit",
|
|
||||||
"CRIT": "Volltrefferquote",
|
|
||||||
"EVA": "Fluchtwert",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
"silk_scarf": "Seidenschal",
|
|
||||||
"black_belt": "Schwarzgurt",
|
|
||||||
"sharp_beak": "Spitzer Schnabel",
|
|
||||||
"poison_barb": "Giftstich",
|
|
||||||
"soft_sand": "Pudersand",
|
|
||||||
"hard_stone": "Granitstein",
|
|
||||||
"silver_powder": "Silberstaub",
|
|
||||||
"spell_tag": "Bannsticker",
|
|
||||||
"metal_coat": "Metallmantel",
|
|
||||||
"charcoal": "Holzkohle",
|
|
||||||
"mystic_water": "Zauberwasser",
|
|
||||||
"miracle_seed": "Wundersaat",
|
|
||||||
"magnet": "Magnet",
|
|
||||||
"twisted_spoon": "Krümmlöffel",
|
|
||||||
"never_melt_ice": "Ewiges Eis",
|
|
||||||
"dragon_fang": "Drachenzahn",
|
|
||||||
"black_glasses": "Schattenbrille",
|
|
||||||
"fairy_feather": "Feendaune",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "KP-Plus",
|
|
||||||
"protein": "Protein",
|
|
||||||
"iron": "Eisen",
|
|
||||||
"calcium": "Kalzium",
|
|
||||||
"zinc": "Zink",
|
|
||||||
"carbos": "Carbon",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "Keins",
|
|
||||||
|
|
||||||
"LINKING_CORD": "Linkkabel",
|
|
||||||
"SUN_STONE": "Sonnenstein",
|
|
||||||
"MOON_STONE": "Mondstein",
|
|
||||||
"LEAF_STONE": "Blattstein",
|
|
||||||
"FIRE_STONE": "Feuerstein",
|
|
||||||
"WATER_STONE": "Wasserstein",
|
|
||||||
"THUNDER_STONE": "Donnerstein",
|
|
||||||
"ICE_STONE": "Eisstein",
|
|
||||||
"DUSK_STONE": "Finsterstein",
|
|
||||||
"DAWN_STONE": "Funkelstein",
|
|
||||||
"SHINY_STONE": "Leuchtstein",
|
|
||||||
"CRACKED_POT": "Rissige Kanne",
|
|
||||||
"SWEET_APPLE": "Süßer Apfel",
|
|
||||||
"TART_APPLE": "Saurer Apfel",
|
|
||||||
"STRAWBERRY_SWEET": "Zucker-Erdbeere",
|
|
||||||
"UNREMARKABLE_TEACUP": "Simple Teeschale",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "Löchrige Kanne",
|
|
||||||
"BLACK_AUGURITE": "Schwarzaugit",
|
|
||||||
"GALARICA_CUFF": "Galarnuss-Reif",
|
|
||||||
"GALARICA_WREATH": "Galarnuss-Kranz",
|
|
||||||
"PEAT_BLOCK": "Torfblock",
|
|
||||||
"AUSPICIOUS_ARMOR": "Glorienrüstung",
|
|
||||||
"MALICIOUS_ARMOR": "Fluchrüstung",
|
|
||||||
"MASTERPIECE_TEACUP": "Edle Teeschale",
|
|
||||||
"METAL_ALLOY": "Legierungsmetall",
|
|
||||||
"SCROLL_OF_DARKNESS": "Unlicht-Schriftrolle",
|
|
||||||
"SCROLL_OF_WATERS": "Wasser-Schriftrolle",
|
|
||||||
"SYRUPY_APPLE": "Saftiger Apfel",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "Keins",
|
|
||||||
|
|
||||||
"ABOMASITE": "Rexblisarnit",
|
|
||||||
"ABSOLITE": "Absolnit",
|
|
||||||
"AERODACTYLITE": "Aerodactylonit",
|
|
||||||
"AGGRONITE": "Stollossnit",
|
|
||||||
"ALAKAZITE": "Simsalanit",
|
|
||||||
"ALTARIANITE": "Altarianit",
|
|
||||||
"AMPHAROSITE": "Ampharosnit",
|
|
||||||
"AUDINITE": "Ohrdochnit",
|
|
||||||
"BANETTITE": "Banetteonit",
|
|
||||||
"BEEDRILLITE": "Bibornit",
|
|
||||||
"BLASTOISINITE": "Turtoknit",
|
|
||||||
"BLAZIKENITE": "Lohgocknit",
|
|
||||||
"CAMERUPTITE": "Cameruptnit",
|
|
||||||
"CHARIZARDITE_X": "Gluraknit X",
|
|
||||||
"CHARIZARDITE_Y": "Gluraknit Y",
|
|
||||||
"DIANCITE": "Diancienit",
|
|
||||||
"GALLADITE": "Galagladinit",
|
|
||||||
"GARCHOMPITE": "Knakracknit",
|
|
||||||
"GARDEVOIRITE": "Guardevoirnit",
|
|
||||||
"GENGARITE": "Gengarnit ",
|
|
||||||
"GLALITITE": "Firnontornit",
|
|
||||||
"GYARADOSITE": "Garadosnit",
|
|
||||||
"HERACRONITE": "Skarabornit",
|
|
||||||
"HOUNDOOMINITE": "Hundemonit ",
|
|
||||||
"KANGASKHANITE": "Kangamanit",
|
|
||||||
"LATIASITE": "Latiasnit",
|
|
||||||
"LATIOSITE": "Latiosnit",
|
|
||||||
"LOPUNNITE": "Schlapornit",
|
|
||||||
"LUCARIONITE": "Lucarionit",
|
|
||||||
"MANECTITE": "Voltensonit",
|
|
||||||
"MAWILITE": "Flunkifernit",
|
|
||||||
"MEDICHAMITE": "Meditalisnit",
|
|
||||||
"METAGROSSITE": "Metagrossnit",
|
|
||||||
"MEWTWONITE_X": "Mewtunit X",
|
|
||||||
"MEWTWONITE_Y": "Mewtunit Y",
|
|
||||||
"PIDGEOTITE": "Taubossnit",
|
|
||||||
"PINSIRITE": "Pinsirnit",
|
|
||||||
"RAYQUAZITE": "Rayquazanit",
|
|
||||||
"SABLENITE": "Zobirisnit",
|
|
||||||
"SALAMENCITE": "Brutalandanit",
|
|
||||||
"SCEPTILITE": "Gewaldronit",
|
|
||||||
"SCIZORITE": "Scheroxnit",
|
|
||||||
"SHARPEDONITE": "Tohaidonit",
|
|
||||||
"SLOWBRONITE": "Lahmusnit",
|
|
||||||
"STEELIXITE": "Stahlosnit",
|
|
||||||
"SWAMPERTITE": "Sumpexnit",
|
|
||||||
"TYRANITARITE": "Despotarnit",
|
|
||||||
"VENUSAURITE": "Bisaflornit",
|
|
||||||
|
|
||||||
"BLUE_ORB": "Blauer Edelstein",
|
|
||||||
"RED_ORB": "Roter Edelstein",
|
|
||||||
"SHARP_METEORITE": "Scharfer Meteorit",
|
|
||||||
"HARD_METEORITE": "Harter Meteorit",
|
|
||||||
"SMOOTH_METEORITE": "Glatter Meteorit",
|
|
||||||
"ADAMANT_CRYSTAL": "Adamantkristall",
|
|
||||||
"LUSTROUS_GLOBE": "Weißkristall",
|
|
||||||
"GRISEOUS_CORE": "Platinumkristall",
|
|
||||||
"REVEAL_GLASS": "Wahrspiegel",
|
|
||||||
"GRACIDEA": "Gracidea",
|
|
||||||
"MAX_MUSHROOMS": "Dyna-Pilz",
|
|
||||||
"DARK_STONE": "Dunkelstein",
|
|
||||||
"LIGHT_STONE": "Lichtstein",
|
|
||||||
"PRISON_BOTTLE": "Banngefäß",
|
|
||||||
"N_LUNARIZER": "Necrolun",
|
|
||||||
"N_SOLARIZER": "Necrosol",
|
|
||||||
"RUSTED_SWORD": "Rostiges Schwert",
|
|
||||||
"RUSTED_SHIELD": "Rostiges Schild",
|
|
||||||
"ICY_REINS_OF_UNITY": "Eisige Zügel des Bundes",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "Schattige Zügel des Bundes",
|
|
||||||
"WELLSPRING_MASK": "Brunnenmaske",
|
|
||||||
"HEARTHFLAME_MASK": "Ofenmaske",
|
|
||||||
"CORNERSTONE_MASK": "Fundamentmaske",
|
|
||||||
"SHOCK_DRIVE": "Blitzmodul",
|
|
||||||
"BURN_DRIVE": "Flammenmodul",
|
|
||||||
"CHILL_DRIVE": "Gefriermodul",
|
|
||||||
"DOUSE_DRIVE": "Aquamodul",
|
|
||||||
"ULTRANECROZIUM_Z": "Ultranecrozium Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "Fausttafel",
|
|
||||||
"SKY_PLATE": "Wolkentafel",
|
|
||||||
"TOXIC_PLATE": "Gifttafel",
|
|
||||||
"EARTH_PLATE": "Erdtafel",
|
|
||||||
"STONE_PLATE": "Steintafel",
|
|
||||||
"INSECT_PLATE": "Käfertafel",
|
|
||||||
"SPOOKY_PLATE": "Spuktafel",
|
|
||||||
"IRON_PLATE": "Eisentafel",
|
|
||||||
"FLAME_PLATE": "Feuertafel",
|
|
||||||
"SPLASH_PLATE": "Wassertafel",
|
|
||||||
"MEADOW_PLATE": "Wiesentafel",
|
|
||||||
"ZAP_PLATE": "Blitztafel",
|
|
||||||
"MIND_PLATE": "Hirntafel",
|
|
||||||
"ICICLE_PLATE": "Frosttafel",
|
|
||||||
"DRACO_PLATE": "Dracotafel",
|
|
||||||
"DREAD_PLATE": "Furchttafel",
|
|
||||||
"PIXIE_PLATE": "Feentafel",
|
|
||||||
"BLANK_PLATE": "Neutraltafel",
|
|
||||||
"LEGEND_PLATE": "Legendentafel",
|
|
||||||
"FIGHTING_MEMORY": "Kampf-Disc",
|
|
||||||
"FLYING_MEMORY": "Flug-Disc",
|
|
||||||
"POISON_MEMORY": "Gift-Disc",
|
|
||||||
"GROUND_MEMORY": "Boden-Disc",
|
|
||||||
"ROCK_MEMORY": "Gesteins-Disc",
|
|
||||||
"BUG_MEMORY": "Käfer-Disc",
|
|
||||||
"GHOST_MEMORY": "Geister-Disc",
|
|
||||||
"STEEL_MEMORY": "Stahl-Disc",
|
|
||||||
"FIRE_MEMORY": "Feuer-Disc",
|
|
||||||
"WATER_MEMORY": "Wasser-Disc",
|
|
||||||
"GRASS_MEMORY": "Pflanzen-Disc",
|
|
||||||
"ELECTRIC_MEMORY": "Elektro-Disc",
|
|
||||||
"PSYCHIC_MEMORY": "Psycho-Disc",
|
|
||||||
"ICE_MEMORY": "Eis-Disc",
|
|
||||||
"DRAGON_MEMORY": "Drachen-Disc",
|
|
||||||
"DARK_MEMORY": "Unlicht-Disc",
|
|
||||||
"FAIRY_MEMORY": "Feen-Disc",
|
|
||||||
"BLANK_MEMORY": "Leere-Disc",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Einwechseln",
|
|
||||||
"SUMMARY": "Bericht",
|
|
||||||
"CANCEL": "Abbrechen",
|
|
||||||
"RELEASE": "Freilassen",
|
|
||||||
"APPLY": "Anwenden",
|
|
||||||
"TEACH": "Erlernen",
|
|
||||||
"SPLICE": "Fusionieren",
|
|
||||||
"UNSPLICE": "Defusionieren",
|
|
||||||
"ACTIVATE": "Aktivieren",
|
|
||||||
"DEACTIVATE": "Deaktivieren",
|
|
||||||
"TRANSFER": "Übertragen",
|
|
||||||
"ALL": "Alle",
|
|
||||||
"PASS_BATON": "Stafette nutzen",
|
|
||||||
"UNPAUSE_EVOLUTION": "Entwicklung fortsetzen",
|
|
||||||
"REVIVE": "Wiederbeleben",
|
|
||||||
"RENAME": "Umbenennen",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Wähle ein Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "Was soll mit diesem Pokémon geschehen?",
|
|
||||||
"noEnergy": "{{pokemonName}} ist nicht fit genug, um zu kämpfen!",
|
|
||||||
"hasEnergy": "{{pokemonName}} steckt noch voller Energie",
|
|
||||||
"cantBeUsed": "{{pokemonName}} kann in dieser Herausforderung nicht verwendet werden!",
|
|
||||||
"tooManyItems": "{{pokemonName}} trägt bereits zu viele dieser Items!",
|
|
||||||
"anyEffect": "Das würde keine Wirkung zeigen.",
|
|
||||||
"unpausedEvolutions": "Entwicklungen für {{pokemonName}} wurden wieder aktiviert.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "Willst du wirklich {{fusionName}} von {{pokemonName}} defusionieren? {{fusionName}} wird freigelassen.",
|
|
||||||
"wasReverted": "{{fusionName}} verwandelt sich in {{pokemonName}} zurück.",
|
|
||||||
"releaseConfirmation": "Möchtest du {{pokemonName}} wirklich freilassen?",
|
|
||||||
"releaseInBattle": "Pokémon, die aktuell im Kampf sind, können nicht freigelassen werden.",
|
|
||||||
"selectAMove": "Wähle eine Attacke.",
|
|
||||||
"changeQuantity": "Wähle ein getragenes Item aus, das übertragen werden soll. Nutze < und > um die Anzahl zu ändern.",
|
|
||||||
"selectAnotherPokemonToSplice": "Wähle ein anderes Pokémon mit dem fusioniert werden soll aus.",
|
|
||||||
"cancel": "Abbrechen",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Erlernbar!",
|
|
||||||
"notAble": "Nicht erlernbar",
|
|
||||||
"learned": "Bereits erlernt!",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Auf wiedersehen, {{pokemonName}}!",
|
|
||||||
"byebye": "Byebye, {{pokemonName}}!",
|
|
||||||
"farewell": "Mach’s gut, {{pokemonName}}!",
|
|
||||||
"soLong": "Bis dann, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "Nun heißt es Abschied nehmen, {{pokemonName}}!",
|
|
||||||
"illMissYou": "Ich werde dich vermissen, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "Ich werde dich niemals vergessen, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "Bis wir uns wiedersehen, {{pokemonName}}!",
|
|
||||||
"sayonara": "Sayonara, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "Also dann, man riecht sich! Ciao!, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const enConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory
|
|
||||||
};
|
|
@ -319,6 +319,19 @@
|
|||||||
"TART_APPLE": "Tart Apple",
|
"TART_APPLE": "Tart Apple",
|
||||||
"STRAWBERRY_SWEET": "Strawberry Sweet",
|
"STRAWBERRY_SWEET": "Strawberry Sweet",
|
||||||
"UNREMARKABLE_TEACUP": "Unremarkable Teacup",
|
"UNREMARKABLE_TEACUP": "Unremarkable Teacup",
|
||||||
|
"UPGRADE": "Upgrade",
|
||||||
|
"DUBIOUS_DISC": "Dubious Disc",
|
||||||
|
"DRAGON_SCALE": "Dragon Scale",
|
||||||
|
"PRISM_SCALE": "Prism Scale",
|
||||||
|
"RAZOR_CLAW": "Razor Claw",
|
||||||
|
"RAZOR_FANG": "Razor Fang",
|
||||||
|
"REAPER_CLOTH": "Reaper Cloth",
|
||||||
|
"ELECTIRIZER": "Electirizer",
|
||||||
|
"MAGMARIZER": "Magmarizer",
|
||||||
|
"PROTECTOR": "Protector",
|
||||||
|
"SACHET": "Sachet",
|
||||||
|
"WHIPPED_DREAM": "Whipped Dream",
|
||||||
|
"LEADERS_CREST": "Leader's Crest",
|
||||||
|
|
||||||
"CHIPPED_POT": "Chipped Pot",
|
"CHIPPED_POT": "Chipped Pot",
|
||||||
"BLACK_AUGURITE": "Black Augurite",
|
"BLACK_AUGURITE": "Black Augurite",
|
||||||
|
@ -1,470 +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",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"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;
|
|
@ -13,6 +13,7 @@
|
|||||||
"ALL": "All",
|
"ALL": "All",
|
||||||
"PASS_BATON": "Pass Baton",
|
"PASS_BATON": "Pass Baton",
|
||||||
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
||||||
|
"PAUSE_EVOLUTION": "Pause Evolution",
|
||||||
"REVIVE": "Revive",
|
"REVIVE": "Revive",
|
||||||
"RENAME": "Rename",
|
"RENAME": "Rename",
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
"choosePokemon": "Choose a Pokémon.",
|
||||||
@ -23,6 +24,7 @@
|
|||||||
"tooManyItems": "{{pokemonName}} has too many\nof this item!",
|
"tooManyItems": "{{pokemonName}} has too many\nof this item!",
|
||||||
"anyEffect": "It won't have any effect.",
|
"anyEffect": "It won't have any effect.",
|
||||||
"unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.",
|
"unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.",
|
||||||
|
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
||||||
"unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.",
|
"unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.",
|
||||||
"wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.",
|
"wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.",
|
||||||
"releaseConfirmation": "Do you really want to release {{pokemonName}}?",
|
"releaseConfirmation": "Do you really want to release {{pokemonName}}?",
|
||||||
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Send Out",
|
|
||||||
"SUMMARY": "Summary",
|
|
||||||
"CANCEL": "Cancel",
|
|
||||||
"RELEASE": "Release",
|
|
||||||
"APPLY": "Apply",
|
|
||||||
"TEACH": "Teach",
|
|
||||||
"SPLICE": "Splice",
|
|
||||||
"UNSPLICE": "Unsplice",
|
|
||||||
"ACTIVATE": "Activate",
|
|
||||||
"DEACTIVATE": "Deactivate",
|
|
||||||
"TRANSFER": "Transfer",
|
|
||||||
"ALL": "All",
|
|
||||||
"PASS_BATON": "Pass Baton",
|
|
||||||
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
|
||||||
"REVIVE": "Revive",
|
|
||||||
"RENAME": "Rename",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "Do what with this Pokémon?",
|
|
||||||
"noEnergy": "{{pokemonName}} has no energy\nleft to battle!",
|
|
||||||
"hasEnergy": "{{pokemonName}} still has energy\nto battle!",
|
|
||||||
"cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!",
|
|
||||||
"tooManyItems": "{{pokemonName}} has too many\nof this item!",
|
|
||||||
"anyEffect": "It won't have any effect.",
|
|
||||||
"unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.",
|
|
||||||
"wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.",
|
|
||||||
"releaseConfirmation": "Do you really want to release {{pokemonName}}?",
|
|
||||||
"releaseInBattle": "You can't release a Pokémon that's in battle!",
|
|
||||||
"selectAMove": "Select a move.",
|
|
||||||
"changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.",
|
|
||||||
"selectAnotherPokemonToSplice": "Select another Pokémon to splice.",
|
|
||||||
"cancel": "Cancel",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Able",
|
|
||||||
"notAble": "Not able",
|
|
||||||
"learned": "Learned",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Goodbye, {{pokemonName}}!",
|
|
||||||
"byebye": "Byebye, {{pokemonName}}!",
|
|
||||||
"farewell": "Farewell, {{pokemonName}}!",
|
|
||||||
"soLong": "So long, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "This is where we part, {{pokemonName}}!",
|
|
||||||
"illMissYou": "I'll miss you, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "I'll never forget you, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "Until we meet again, {{pokemonName}}!",
|
|
||||||
"sayonara": "Sayonara, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "Smell ya later, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const esConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory
|
|
||||||
};
|
|
@ -1,469 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description: "Recibes {{modifierCount}}x {{pokeballName}} (En inventario: {{pokeballAmount}}) \nRatio de captura: {{catchRate}}.",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
|
||||||
description: "Recibes {{modifierCount}}x {{voucherTypeName}}.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "¡{{pokemonName}} no puede\nrecibir este objeto!",
|
|
||||||
"tooMany": "¡{{pokemonName}} tiene este objeto\ndemasiadas veces!",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "Restaura {{restorePoints}} PS o, al menos, un {{restorePercent}}% PS de un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaura todos los PS de un Pokémon.",
|
|
||||||
"fullyWithStatus": "Restaura todos los PS de un Pokémon y cura todos los problemas de estados.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "Revive a un Pokémon y restaura {{restorePercent}}% PS.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "Cura todos los problemas de estados de un Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "Restaura {{restorePoints}} PP del movimiento que elijas de un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaura todos los PP del movimiento que elijas de un Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "Restaura {{restorePoints}} PP de todos los movimientos de un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaura todos los PP de todos los movimientos de un Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "Aumenta permanentemente los PP para un movimiento de un Pokémon en {{upPoints}} por cada 5 PP máximo (máximo 3).",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "Menta {{natureName}}",
|
|
||||||
description: "Cambia la naturaleza de un Pokémon a {{natureName}} y desbloquea permanentemente dicha naturaleza para el inicial.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "Duplica la posibilidad de que un encuentro sea una combate doble durante {{battleCount}} combates.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "Aumenta la est. {{tempBattleStatName}} de todos los miembros del equipo en 1 nivel durante 5 combates.",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "Aumenta la potencia de los movimientos de tipo {{moveType}} de un Pokémon en un 20%.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "Aumenta el nivel de un Pokémon en {{levels}}.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "Aumenta el nivel de todos los miembros del equipo en {{levels}}.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "Aumenta la est. {{statName}} base del portador en un 10%.\nCuanto mayores sean tus IVs, mayor será el límite de acumulación.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "Restaura el 100% de los PS de todos los Pokémon.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "Revive a todos los Pokémon debilitados y restaura completamente sus PS.",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "Otorga una {{moneyMultiplier}} cantidad de dinero (₽{{moneyAmount}}).",
|
|
||||||
extra: {
|
|
||||||
"small": "pequeña",
|
|
||||||
"moderate": "moderada",
|
|
||||||
"large": "gran",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "Aumenta la ganancia de EXP en un {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "Aumenta la ganancia de EXP del portador en un {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "Aumenta la ganancia de amistad por victoria en un 50%.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "Aumenta la precisión de los movimiento en un {{accuracyAmount}} (máximo 100).",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "Los ataques golpean una vez más a costa de una reducción de poder del 60/75/82,5% por cada objeto.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "MT{{moveId}} - {{moveName}}",
|
|
||||||
description: "Enseña {{moveName}} a un Pokémon.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "MT{{moveId}} - {{moveName}}",
|
|
||||||
description: "Enseña {{moveName}} a un Pokémon\n(Hold C or Shift for more info).",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "Hace que ciertos Pokémon evolucionen.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "Hace que ciertos Pokémon cambien de forma.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "Fusiona dos Pokémon (transfiere habilidades, divide estadísticas bases y tipos, comparte movimientos).",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "Teralito {{teraType}}",
|
|
||||||
description: "Teracristaliza al portador al tipo {{teraType}} durante 10 combates.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "Al atacar, hay un {{chancePercent}}% de posibilidades de que robes el objeto que tiene el enemigo.",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "Cada turno, el portador roba un objeto del enemigo.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "Agrega un {{chancePercent}}% de probabilidad de infligir {{statusEffect}} con movimientos de ataque.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "Agrega un {{chancePercent}}% de probabilidad de resistir un ataque que lo debilitaría.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Carameloraro" },
|
|
||||||
"RARER_CANDY": { name: "Caramelorarísimo" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "Mega-aro", description: "Las Megapiedras están disponibles." },
|
|
||||||
"DYNAMAX_BAND": { name: "Maximuñequera", description: "Las Maxisetas están disponibles." },
|
|
||||||
"TERA_ORB": { name: "Orbe Teracristal", description: "Los Teralitos están disponibles." },
|
|
||||||
|
|
||||||
"MAP": { name: "Mapa", description: "Te permite elegir tu camino al final del bioma." },
|
|
||||||
|
|
||||||
"POTION": { name: "Poción" },
|
|
||||||
"SUPER_POTION": { name: "Superpoción" },
|
|
||||||
"HYPER_POTION": { name: "Hiperpoción" },
|
|
||||||
"MAX_POTION": { name: "Máx. Poción" },
|
|
||||||
"FULL_RESTORE": { name: "Restau. Todo" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "Revivir" },
|
|
||||||
"MAX_REVIVE": { name: "Máx. Revivir" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Cura Total" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Cen. Sagrada" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Semilla Revivir", description: "Revive al portador con la mitad de sus PS al debilitarse por un golpe directo." },
|
|
||||||
|
|
||||||
"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: "Éter" },
|
|
||||||
"MAX_ETHER": { name: "Éter Máx." },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "Elixir" },
|
|
||||||
"MAX_ELIXIR": { name: "Elixir Máx." },
|
|
||||||
|
|
||||||
"PP_UP": { name: "Más PP" },
|
|
||||||
"PP_MAX": { name: "Máx PP" },
|
|
||||||
|
|
||||||
"LURE": { name: "Incienso" },
|
|
||||||
"SUPER_LURE": { name: "Superincienso" },
|
|
||||||
"MAX_LURE": { name: "Incienso Máximo" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Seta Recuerdo", description: "Recuerda un movimiento olvidado de un Pokémon." },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "Repartir EXP", description: "Los que no combatan reciben el 20% de la EXP." },
|
|
||||||
"EXP_BALANCE": { name: "Equilibrar EXP", description: "Da mayor parte de la EXP recibida a los miembros del equipo que tengan menos nivel." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Amuleto Oval", description: "Cada Pokémon combatiente recibe un 10% adicional de la EXP total." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "Amuleto EXP" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "Super Amuleto EXP" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "Amuleto EXP Dorado" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Huevo Suerte" },
|
|
||||||
"GOLDEN_EGG": { name: "Huevo Dorado" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Camp. Alivio" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "Periscopio", description: "Aumenta la probabilidad de asestar un golpe crítico." },
|
|
||||||
"LEEK": { name: "Puerro", description: "Puerro muy largo y duro que aumenta la probabilidad de asestar un golpe crítico. Debe llevarlo Farfetch'd." },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "Mineral Evolutivo", description: "Roca misteriosa. El Pokémon portador aumentará su Defensa y su Defensa Especial si aún puede evolucionar." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Rocío bondad", description: "Aumenta la influencia de la naturaleza de un Pokémon en sus estadísticas en un 10% (aditivo)." },
|
|
||||||
|
|
||||||
"NUGGET": { name: "Pepita" },
|
|
||||||
"BIG_NUGGET": { name: "Maxipepita" },
|
|
||||||
"RELIC_GOLD": { name: "Real de oro" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Moneda Amuleto", description: "Aumenta el dinero ganado en un 20%." },
|
|
||||||
"GOLDEN_PUNCH": { name: "Puño Dorado", description: "Otorga el 50% del daño infligido como dinero." },
|
|
||||||
"COIN_CASE": { name: "Monedero", description: "Después de cada 10 combates, recibe el 10% de tu dinero en intereses." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Cápsula candado", description: "Le permite bloquear las rarezas de los objetos al cambiar de objetos." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Garra Garfio" },
|
|
||||||
"WIDE_LENS": { name: "Lupa" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Multilupa" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "Amuleto curación", description: "Aumenta la efectividad de los movimientos y objetos de curacion de PS en un 10% (excepto revivir)." },
|
|
||||||
"CANDY_JAR": { name: "Candy Jar", description: "Aumenta en 1 el número de niveles añadidos por los carameloraros." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Saco Bayas", description: "Agrega un 30% de posibilidades de que una baya usada no se consuma." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Cinta Focus", description: "Agrega un 10% de probabilidad de resistir un ataque que lo debilitaría." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Garra Rápida", description: "Agrega un 10% de probabilidad de atacar primero independientemente de la velocidad (después de la prioridad)." },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "Roca del Rey", description: "Agrega un 10% de probabilidad de que un ataque haga que el oponente retroceda." },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "Restos", description: "Cura 1/16 de los PS máximo de un Pokémon cada turno." },
|
|
||||||
"SHELL_BELL": { name: "Camp Concha", description: "Cura 1/8 del daño infligido por un Pokémon." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "Toxiesfera", description: "Extraña esfera que envenena gravemente a quien la usa en combate." },
|
|
||||||
"FLAME_ORB": { name: "Llamasfera", description: "Extraña esfera que causa quemaduras a quien la usa en combate." },
|
|
||||||
|
|
||||||
"BATON": { name: "Relevo", description: "Permite pasar los efectos al cambiar de Pokémon, también evita las trampas." },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "Amuleto Iris", description: "Aumenta drásticamente la posibilidad de que un Pokémon salvaje sea Shiny." },
|
|
||||||
"ABILITY_CHARM": { name: "Amuleto Habilidad", description: "Aumenta drásticamente la posibilidad de que un Pokémon salvaje tenga una habilidad oculta." },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "Escáner IV", description: "Permite escanear los IVs de Pokémon salvajes. Se revelan 2 IVs por cada objeto.\nLos mejores IVs se muestran primero." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "Punta ADN" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Mini Agujero Negro" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Poké Ball Dorada", description: "Agrega 1 opción de objeto extra al final de cada combate." },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "Ficha Daño", description: "Aumenta el daño en un 5%." },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "Ficha Protección", description: "Reduce el daño recibido en un 2,5%." },
|
|
||||||
"ENEMY_HEAL": { name: "Ficha Curación", description: "Cura el 2% de los PS máximo en cada turno." },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "Ficha Veneno" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Ficha Parálisis" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "Ficha Quemadura" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Ficha Cura Total", description: "Agrega un 2.5% de probabilidad cada turno de curar un problema de estado." },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "Ficha Aguante" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { name: "Ficha Fusión", description: "Agrega un 1% de probabilidad de que un Pokémon salvaje sea una fusión." },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "Bola Luminosa", description: "Asombrosa esfera que aumenta el Ataque y el Ataque Especial. Debe llevarla Pikachu." },
|
|
||||||
"THICK_CLUB": { name: "Hueso Grueso", description: "Extraño tipo de hueso que potencia los ataques físicos. Debe llevarlo Cubone o Marowak." },
|
|
||||||
"METAL_POWDER": { name: "Polvo Metálico", description: "Polvo muy fino, pero a la vez poderoso, que aumenta la Defensa. Debe llevarlo Ditto." },
|
|
||||||
"QUICK_POWDER": { name: "Polvo Veloz", description: "Polvo muy fino, pero a la vez poderoso, que aumenta la Velocidad. Debe llevarlo Ditto." }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "Ataque X",
|
|
||||||
"x_defense": "Defensa X",
|
|
||||||
"x_sp_atk": "Ataq. Esp. X",
|
|
||||||
"x_sp_def": "Def. Esp. X",
|
|
||||||
"x_speed": "Velocidad X",
|
|
||||||
"x_accuracy": "Precisión X",
|
|
||||||
"dire_hit": "Crítico X",
|
|
||||||
},
|
|
||||||
|
|
||||||
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": "Pañuelo Seda",
|
|
||||||
"black_belt": "Cinturón Negro",
|
|
||||||
"sharp_beak": "Pico Afilado",
|
|
||||||
"poison_barb": "Flecha Venenosa",
|
|
||||||
"soft_sand": "Arena Fina",
|
|
||||||
"hard_stone": "Piedra Dura",
|
|
||||||
"silver_powder": "Polvo Plata",
|
|
||||||
"spell_tag": "Hechizo",
|
|
||||||
"metal_coat": "Rev. Metálico",
|
|
||||||
"charcoal": "Carbón",
|
|
||||||
"mystic_water": "Agua Mística",
|
|
||||||
"miracle_seed": "Semilla Milagro",
|
|
||||||
"magnet": "Imán",
|
|
||||||
"twisted_spoon": "Cuchara Torcida",
|
|
||||||
"never_melt_ice": "Antiderretir",
|
|
||||||
"dragon_fang": "Colmillo Dragón",
|
|
||||||
"black_glasses": "Gafas de Sol",
|
|
||||||
"fairy_feather": "Pluma Hada",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "Más PS",
|
|
||||||
"protein": "Proteína",
|
|
||||||
"iron": "Hierro",
|
|
||||||
"calcium": "Calcio",
|
|
||||||
"zinc": "Zinc",
|
|
||||||
"carbos": "Carburante",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "None",
|
|
||||||
|
|
||||||
"LINKING_CORD": "Cordón Unión",
|
|
||||||
"SUN_STONE": "Piedra Solar",
|
|
||||||
"MOON_STONE": "Piedra Lunar",
|
|
||||||
"LEAF_STONE": "Piedra Hoja",
|
|
||||||
"FIRE_STONE": "Piedra Fuego",
|
|
||||||
"WATER_STONE": "Piedra Agua",
|
|
||||||
"THUNDER_STONE": "Piedra Trueno",
|
|
||||||
"ICE_STONE": "Piedra Hielo",
|
|
||||||
"DUSK_STONE": "Piedra Noche",
|
|
||||||
"DAWN_STONE": "Piedra Alba",
|
|
||||||
"SHINY_STONE": "Piedra Día",
|
|
||||||
"CRACKED_POT": "Tetera Agrietada",
|
|
||||||
"SWEET_APPLE": "Manzana Dulce",
|
|
||||||
"TART_APPLE": "Manzana Ácida",
|
|
||||||
"STRAWBERRY_SWEET": "Confite Fresa",
|
|
||||||
"UNREMARKABLE_TEACUP": "Cuenco Mediocre",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "Tetera Rota",
|
|
||||||
"BLACK_AUGURITE": "Mineral Negro",
|
|
||||||
"GALARICA_CUFF": "Brazal Galanuez",
|
|
||||||
"GALARICA_WREATH": "Corona Galanuez",
|
|
||||||
"PEAT_BLOCK": "Bloque de Turba",
|
|
||||||
"AUSPICIOUS_ARMOR": "Armadura Auspiciosa",
|
|
||||||
"MALICIOUS_ARMOR": "Armadura Maldita",
|
|
||||||
"MASTERPIECE_TEACUP": "Cuenco Exquisito",
|
|
||||||
"METAL_ALLOY": "Metal Compuesto",
|
|
||||||
"SCROLL_OF_DARKNESS": "Manuscrito Sombras",
|
|
||||||
"SCROLL_OF_WATERS": "Manuscrito Aguas",
|
|
||||||
"SYRUPY_APPLE": "Manzana Melosa",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "None",
|
|
||||||
|
|
||||||
"ABOMASITE": "Abomasnowita",
|
|
||||||
"ABSOLITE": "Absolita",
|
|
||||||
"AERODACTYLITE": "Aerodactylita",
|
|
||||||
"AGGRONITE": "Aggronita",
|
|
||||||
"ALAKAZITE": "Alakazamita",
|
|
||||||
"ALTARIANITE": "Altarianita",
|
|
||||||
"AMPHAROSITE": "Ampharosita",
|
|
||||||
"AUDINITE": "Audinita",
|
|
||||||
"BANETTITE": "Banettita",
|
|
||||||
"BEEDRILLITE": "Beedrillita",
|
|
||||||
"BLASTOISINITE": "Blastoisita",
|
|
||||||
"BLAZIKENITE": "Blazikenita",
|
|
||||||
"CAMERUPTITE": "Cameruptita",
|
|
||||||
"CHARIZARDITE_X": "Charizardita X",
|
|
||||||
"CHARIZARDITE_Y": "Charizardita Y",
|
|
||||||
"DIANCITE": "Diancita",
|
|
||||||
"GALLADITE": "Galladita",
|
|
||||||
"GARCHOMPITE": "Garchompita",
|
|
||||||
"GARDEVOIRITE": "Gardevoirita",
|
|
||||||
"GENGARITE": "Gengarita",
|
|
||||||
"GLALITITE": "Glalita",
|
|
||||||
"GYARADOSITE": "Gyaradosita",
|
|
||||||
"HERACRONITE": "Heracrossita",
|
|
||||||
"HOUNDOOMINITE": "Houndoomita",
|
|
||||||
"KANGASKHANITE": "Kangaskhanita",
|
|
||||||
"LATIASITE": "Latiasita",
|
|
||||||
"LATIOSITE": "Latiosita",
|
|
||||||
"LOPUNNITE": "Lopunnita",
|
|
||||||
"LUCARIONITE": "Lucarita",
|
|
||||||
"MANECTITE": "Manectricita",
|
|
||||||
"MAWILITE": "Mawilita",
|
|
||||||
"MEDICHAMITE": "Medichamita",
|
|
||||||
"METAGROSSITE": "Metagrossita",
|
|
||||||
"MEWTWONITE_X": "Mewtwoita X",
|
|
||||||
"MEWTWONITE_Y": "Mewtwoita Y",
|
|
||||||
"PIDGEOTITE": "Pidgeotita",
|
|
||||||
"PINSIRITE": "Pinsirita",
|
|
||||||
"RAYQUAZITE": "Rayquazita",
|
|
||||||
"SABLENITE": "Sableynita",
|
|
||||||
"SALAMENCITE": "Salamencita",
|
|
||||||
"SCEPTILITE": "Sceptilita",
|
|
||||||
"SCIZORITE": "Scizorita",
|
|
||||||
"SHARPEDONITE": "Sharpedonita",
|
|
||||||
"SLOWBRONITE": "Slowbronita",
|
|
||||||
"STEELIXITE": "Steelixita",
|
|
||||||
"SWAMPERTITE": "Swampertita",
|
|
||||||
"TYRANITARITE": "Tyranitarita",
|
|
||||||
"VENUSAURITE": "Venusaurita",
|
|
||||||
|
|
||||||
"BLUE_ORB": "Prisma Azul",
|
|
||||||
"RED_ORB": "Prisma Rojo",
|
|
||||||
"SHARP_METEORITE": "Meteorito Afilado",
|
|
||||||
"HARD_METEORITE": "Meteorito Duro",
|
|
||||||
"SMOOTH_METEORITE": "Meteorito Suave",
|
|
||||||
"ADAMANT_CRYSTAL": "Gran Diamansfera",
|
|
||||||
"LUSTROUS_GLOBE": "Gran Lustresfera",
|
|
||||||
"GRISEOUS_CORE": "Gran Griseosfera",
|
|
||||||
"REVEAL_GLASS": "Espejo Veraz",
|
|
||||||
"GRACIDEA": "Gracídea",
|
|
||||||
"MAX_MUSHROOMS": "MaxiSetas",
|
|
||||||
"DARK_STONE": "Piedra Oscura",
|
|
||||||
"LIGHT_STONE": "Piedra Luminosa",
|
|
||||||
"PRISON_BOTTLE": "Vasija Castigo",
|
|
||||||
"N_LUNARIZER": "Necroluna",
|
|
||||||
"N_SOLARIZER": "Necrosol",
|
|
||||||
"RUSTED_SWORD": "Espada Oxidada",
|
|
||||||
"RUSTED_SHIELD": "Escudo Oxidado",
|
|
||||||
"ICY_REINS_OF_UNITY": "Riendas Unión Heladas",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "Riendas Unión Oscuras",
|
|
||||||
"WELLSPRING_MASK": "Máscara Fuente",
|
|
||||||
"HEARTHFLAME_MASK": "Máscara Horno",
|
|
||||||
"CORNERSTONE_MASK": "Máscara Cimiento",
|
|
||||||
"SHOCK_DRIVE": "FulgoROM",
|
|
||||||
"BURN_DRIVE": "PiroROM",
|
|
||||||
"CHILL_DRIVE": "CrioROM",
|
|
||||||
"DOUSE_DRIVE": "HidroROM",
|
|
||||||
"ULTRANECROZIUM_Z": "Ultranecrostal Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "Tabla Fuerte",
|
|
||||||
"SKY_PLATE": "Tabla Cielo",
|
|
||||||
"TOXIC_PLATE": "Tabla Tóxica",
|
|
||||||
"EARTH_PLATE": "Tabla Terrax",
|
|
||||||
"STONE_PLATE": "Tabla Pétrea",
|
|
||||||
"INSECT_PLATE": "Tabla Bicho",
|
|
||||||
"SPOOKY_PLATE": "Tabla Terror",
|
|
||||||
"IRON_PLATE": "Tabla Acero",
|
|
||||||
"FLAME_PLATE": "Tabla Llama",
|
|
||||||
"SPLASH_PLATE": "Tabla Linfa",
|
|
||||||
"MEADOW_PLATE": "Tabla Pradal",
|
|
||||||
"ZAP_PLATE": "Tabla Trueno",
|
|
||||||
"MIND_PLATE": "Tabla Mental",
|
|
||||||
"ICICLE_PLATE": "Tabla Helada",
|
|
||||||
"DRACO_PLATE": "Tabla Draco",
|
|
||||||
"DREAD_PLATE": "Tabla Oscura",
|
|
||||||
"PIXIE_PLATE": "Tabla Duende",
|
|
||||||
"BLANK_PLATE": "Tabla Neutra",
|
|
||||||
"LEGEND_PLATE": "Tabla Legendaria",
|
|
||||||
"FIGHTING_MEMORY": "Disco Lucha",
|
|
||||||
"FLYING_MEMORY": "Disco Volador",
|
|
||||||
"POISON_MEMORY": "Disco Veneno",
|
|
||||||
"GROUND_MEMORY": "Disco Tierra",
|
|
||||||
"ROCK_MEMORY": "Disco Roca",
|
|
||||||
"BUG_MEMORY": "Disco Bicho",
|
|
||||||
"GHOST_MEMORY": "Disco Fantasma",
|
|
||||||
"STEEL_MEMORY": "Disco Acero",
|
|
||||||
"FIRE_MEMORY": "Disco Fuego",
|
|
||||||
"WATER_MEMORY": "Disco Agua",
|
|
||||||
"GRASS_MEMORY": "Disco Planta",
|
|
||||||
"ELECTRIC_MEMORY": "Disco Eléctrico",
|
|
||||||
"PSYCHIC_MEMORY": "Disco Psíquico",
|
|
||||||
"ICE_MEMORY": "Disco Hielo",
|
|
||||||
"DRAGON_MEMORY": "Disco Dragón",
|
|
||||||
"DARK_MEMORY": "Disco Siniestro",
|
|
||||||
"FAIRY_MEMORY": "Disco Hada",
|
|
||||||
"BLANK_MEMORY": "Disco Blanco",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Send Out",
|
|
||||||
"SUMMARY": "Summary",
|
|
||||||
"CANCEL": "Cancel",
|
|
||||||
"RELEASE": "Release",
|
|
||||||
"APPLY": "Apply",
|
|
||||||
"TEACH": "Enseñar",
|
|
||||||
"SPLICE": "Fusionar",
|
|
||||||
"UNSPLICE": "Separar",
|
|
||||||
"ACTIVATE": "Activar",
|
|
||||||
"DEACTIVATE": "Desactivar",
|
|
||||||
"TRANSFER": "Transferir",
|
|
||||||
"ALL": "Todo",
|
|
||||||
"PASS_BATON": "Relevo",
|
|
||||||
"UNPAUSE_EVOLUTION": "Reanudar Evolución",
|
|
||||||
"REVIVE": "Revivir",
|
|
||||||
"RENAME": "Rename",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Elige a un Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "¿Que quieres hacer con este Pokémon?",
|
|
||||||
"noEnergy": "¡A {{pokemonName}} no le quedan\nfuerzas para luchar!",
|
|
||||||
"hasEnergy": "¡A {{pokemonName}} le quedan\nfuerzas para luchar!",
|
|
||||||
"cantBeUsed": "¡{{pokemonName}} no puede usarse\nen este desafío!",
|
|
||||||
"tooManyItems": "¡{{pokemonName}} tiene demasiados\nde este objeto!",
|
|
||||||
"anyEffect": "No tendría ningún efecto.",
|
|
||||||
"unpausedEvolutions": "Se reanudó las evoluciones de {{pokemonName}}.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "¿Seguro que quiere separar a {{fusionName}}\nde {{pokemonName}}? {{fusionName}} se perderá.",
|
|
||||||
"wasReverted": "{{fusionName}} se revirtió a {{pokemonName}}.",
|
|
||||||
"releaseConfirmation": "¿Quieres liberar a {{pokemonName}}?",
|
|
||||||
"releaseInBattle": "¡No puedes liberar un Pokémon que está en batalla!",
|
|
||||||
"selectAMove": "Selecciona un movimiento.",
|
|
||||||
"changeQuantity": "Selecciona un objeto equipado para transferir.\nUsa < y > para cambiar la cantidad.",
|
|
||||||
"selectAnotherPokemonToSplice": "Selecciona otro Pokémon para fusionar.",
|
|
||||||
"cancel": "Salir",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Apto",
|
|
||||||
"notAble": "No apto",
|
|
||||||
"learned": "Aprendido",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "¡Adiós, {{pokemonName}}!",
|
|
||||||
"byebye": "¡Chao, {{pokemonName}}!",
|
|
||||||
"farewell": "¡Hasta luego, {{pokemonName}}!",
|
|
||||||
"soLong": "¡Nos vemos, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "¡Aquí es donde nos despedimos, {{pokemonName}}!",
|
|
||||||
"illMissYou": "¡Te echaré de menos, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "¡Nunca te olvidaré, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "¡Hasta que nos volvamos a encontrar, {{pokemonName}}!",
|
|
||||||
"sayonara": "¡Sayonara, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "¡Nos vemos luego, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const frConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,470 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{pokeballName}} x{{modifierCount}}",
|
|
||||||
description: "Recevez {{modifierCount}} {{pokeballName}}·s. (Inventaire : {{pokeballAmount}})\nTaux de capture : {{catchRate}}",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{voucherTypeName}} x{{modifierCount}}",
|
|
||||||
description: "Recevez {{modifierCount}} {{voucherTypeName}}.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}} ne peut pas\nporter cet objet !",
|
|
||||||
"tooMany": "{{pokemonName}} possède trop\nd’exemplaires de cet objet !",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "Restaure {{restorePoints}} PV ou {{restorePercent}}% des PV totaux d’un Pokémon, en fonction duquel des deux est le plus élevé.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaure tous les PV d’un Pokémon.",
|
|
||||||
"fullyWithStatus": "Restaure tous les PV d’un Pokémon et soigne tous ses problèmes de statut.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "Ranime un Pokémon et restaure {{restorePercent}}% de ses PV.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "Soigne tous les problèmes de statut d’un Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "Restaure {{restorePoints}} PP à une capacité d’un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaure tous les PP à une capacité d’un Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "Restaure {{restorePoints}} PP à toutes les capacités d’un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaure tous les PP à toutes les capacités d’un Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "Augmente le max de PP de {{upPoints}} à une capacité d’un Pokémon pour chaque 5 PP max (max : 3).",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "Aromate {{natureName}}",
|
|
||||||
description: "Donne la nature {{natureName}} à un Pokémon et la débloque pour le starter lui étant lié.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "Double les chances de tomber sur un combat double pendant {{battleCount}} combats.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "Augmente d’un cran {{tempBattleStatName}} pour toute l’équipe pendant 5 combats.",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "Augmente de 20% la puissance des capacités de type {{moveType}} d’un Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "Fait monter un Pokémon de {{levels}} niveau·x.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "Fait monter toute l’équipe de {{levels}} niveau·x.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "Augmente de 10% {{statName}} de base de son porteur. Plus les IV sont hauts, plus il peut en porter.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "Restaure tous les PV de toute l’équipe.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "Ranime et restaure tous les PV de tous les Pokémon K.O. .",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "Octroie une {{moneyMultiplier}} somme d’argent.\n({{moneyAmount}} ₽)",
|
|
||||||
extra: {
|
|
||||||
"small": "petite",
|
|
||||||
"moderate": "moyenne",
|
|
||||||
"large": "grande",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "Augmente de {{boostPercent}}% le gain de Points d’Exp.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "Augmente de {{boostPercent}}% le gain de Points d’Exp du porteur.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "Augmente le gain d’amitié de 50% par victoire.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "Augmente de {{accuracyAmount}} la précision des capacités (maximum 100).",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "Frappe une fois de plus en échange d’une baisse de puissance de respectivement 60/75/82,5% par cumul.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "CT{{moveId}} - {{moveName}}",
|
|
||||||
description: "Apprend la capacité {{moveName}} à un Pokémon.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "CT{{moveId}} - {{moveName}}",
|
|
||||||
description: "Apprend la capacité {{moveName}} à un Pokémon.\n(Maintenez C ou Maj pour plus d’infos)",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "Permet à certains Pokémon d’évoluer.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "Permet à certains Pokémon de changer de forme.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "Fusionne deux Pokémon (transfère le talent, sépare les stats de base et les types, partage le movepool).",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "Téra-Éclat {{teraType}}",
|
|
||||||
description: "{{teraType}} Téracristallise son porteur pendant 10 combats.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "{{chancePercent}}% de chances de voler un objet de l’adversaire en l’attaquant.",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "À chaque tour, son porteur obtient un objet de son adversaire.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "Ajoute {{chancePercent}}% de chances d’infliger le statut {{statusEffect}} avec des capacités offensives.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "Ajoute {{chancePercent}}% de chances d’encaisser un coup.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Super Bonbon" },
|
|
||||||
"RARER_CANDY": { name: "Hyper Bonbon" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "Méga-Bracelet", description: "Débloque les Méga-Gemmes dans la boutique." },
|
|
||||||
"DYNAMAX_BAND": { name: "Poignet Dynamax", description: "Débloque le Dynamax." },
|
|
||||||
"TERA_ORB": { name: "Orbe Téracristal", description: "Débloque les Téra-Éclats dans la boutique." },
|
|
||||||
|
|
||||||
"MAP": { name: "Carte", description: "Vous permet de choisir votre destination à un croisement." },
|
|
||||||
|
|
||||||
"POTION": { name: "Potion" },
|
|
||||||
"SUPER_POTION": { name: "Super Potion" },
|
|
||||||
"HYPER_POTION": { name: "Hyper Potion" },
|
|
||||||
"MAX_POTION": { name: "Potion Max" },
|
|
||||||
"FULL_RESTORE": { name: "Guérison" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "Rappel" },
|
|
||||||
"MAX_REVIVE": { name: "Rappel Max" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Total Soin" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Cendre Sacrée" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Résugraine", description: "Ranime et restaure la moitié des PV de son porteur s’il est mis K.O. par une capacité directe." },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "Herbe Blanche", description: "Restaure toute stat ayant subi une baisse en combat." },
|
|
||||||
|
|
||||||
"ETHER": { name: "Huile" },
|
|
||||||
"MAX_ETHER": { name: "Huile Max" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "Élixir" },
|
|
||||||
"MAX_ELIXIR": { name: "Élixir Max" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "PP Plus" },
|
|
||||||
"PP_MAX": { name: "PP Max" },
|
|
||||||
|
|
||||||
"LURE": { name: "Parfum" },
|
|
||||||
"SUPER_LURE": { name: "Super Parfum" },
|
|
||||||
"MAX_LURE": { name: "Parfum Max" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Champi Mémoriel", description: "Remémore une capacité à un Pokémon." },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "Multi Exp", description: "Tous les non-participants reçoivent 20% des Points d’Exp d’un participant." },
|
|
||||||
"EXP_BALANCE": { name: "Équilibr’Exp", description: "Équilibre les Points d’Exp à l’avantage des membres de l’équipe aux plus bas niveaux." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Charme Ovale", description: "Quand plusieurs Pokémon sont en combat, chacun gagne 10% supplémentaires du total d’Exp." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "Charme Exp" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "Super Charme Exp" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "Charme Exp Doré" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Œuf Chance" },
|
|
||||||
"GOLDEN_EGG": { name: "Œuf d’Or" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Grelot Zen" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "Lentilscope", description: "Une lentille qui augmente d’un cran le taux de critiques du porteur." },
|
|
||||||
"LEEK": { name: "Poireau", description: "À faire tenir à Canarticho ou Palarticho. Un poireau très long et solide qui augmente de 2 crans le taux de critiques." },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "Évoluroc", description: "Augmente de 50% la Défense et Déf. Spé. si le porteur peut évoluer, 25% aux fusions dont une moitié le peut encore." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Rosée Âme", description: "Augmente de 10% l’influence de la nature d’un Pokémon sur ses statistiques. Effet cumulatif." },
|
|
||||||
|
|
||||||
"NUGGET": { name: "Pépite" },
|
|
||||||
"BIG_NUGGET": { name: "Maxi Pépite" },
|
|
||||||
"RELIC_GOLD": { name: "Vieux Ducat" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Pièce Rune", description: "Augmente de 20% les gains d’argent." },
|
|
||||||
"GOLDEN_PUNCH": { name: "Poing Doré", description: "50% des dégâts infligés sont convertis en argent." },
|
|
||||||
"COIN_CASE": { name: "Boite Jetons", description: "Tous les 10 combats, recevez 10% de votre argent en intérêts." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Poké Écrin", description: "Permet de conserver la rareté des objets si vous relancez les objets proposés." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Accro Griffe" },
|
|
||||||
"WIDE_LENS": { name: "Loupe" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Lentille Multi" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "Charme Soin", description: "Augmente de 10% l’efficacité des capacités et objets de soin de PV (hors Rappels)." },
|
|
||||||
"CANDY_JAR": { name: "Bonbonnière", description: "Augmente de 1 le nombre de niveaux gagnés à l’utilisation d’un Super Bonbon." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Sac à Baies", description: "Ajoute 30% de chances qu’une Baie utilisée ne soit pas consommée." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Bandeau", description: "Ajoute 10% de chances de survivre avec 1 PV si les dégâts reçus pouvaient mettre K.O. ." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Vive Griffe", description: "Ajoute 10% de chances d’agir en premier, indépendamment de la vitesse (après la priorité)." },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "Roche Royale", description: "Ajoute 10% de chances qu’une capacité offensive apeure l’adversaire." },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "Restes", description: "Soigne à chaque tour 1/16 des PV max d’un Pokémon." },
|
|
||||||
"SHELL_BELL": { name: "Grelot Coque", description: "Soigne son porteur avec 1/8 des dégâts qu’il inflige à un Pokémon." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "Orbe Toxique", description: "Empoisonne gravement son porteur à la fin du tour s’il n’a pas déjà de problème de statut." },
|
|
||||||
"FLAME_ORB": { name: "Orbe Flamme", description: "Brule son porteur à la fin du tour s’il n’a pas déjà de problème de statut." },
|
|
||||||
|
|
||||||
"BATON": { name: "Bâton", description: "Permet de transmettre les effets en cas de changement de Pokémon. Ignore les pièges." },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "Charme Chroma", description: "Augmente énormément les chances de rencontrer un Pokémon sauvage chromatique." },
|
|
||||||
"ABILITY_CHARM": { name: "Charme Talent", description: "Augmente énormément les chances de rencontrer un Pokémon sauvage avec un talent caché." },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "Scanner d’IV", description: "Révèle la qualité de deux IV d’un Pokémon sauvage par scanner possédé. Les meilleurs IV sont révélés en priorité." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "Pointeau ADN" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Mini Trou Noir" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Poké Ball Dorée", description: "Ajoute un choix d’objet à la fin de chaque combat" },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "Jeton Dégâts", description: "Augmente les dégâts de 5%." },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "Jeton Protection", description: "Diminue les dégâts reçus de 2,5%." },
|
|
||||||
"ENEMY_HEAL": { name: "Jeton Soin", description: "Soigne 2% des PV max à chaque tour." },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "Jeton Poison" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Jeton Paralysie" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "Jeton Brulure" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Jeton Total Soin", description: "Ajoute 2,5% de chances à chaque tour de se soigner d’un problème de statut." },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "Jeton Ténacité" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { name: "Jeton Fusion", description: "Ajoute 1% de chances qu’un Pokémon sauvage soit une fusion." },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "Balle Lumière", description: "À faire tenir à Pikachu. Un orbe énigmatique qui double son Attaque et son Atq. Spé. ." },
|
|
||||||
"THICK_CLUB": { name: "Masse Os", description: "À faire tenir à Osselait ou Ossatueur. Un os dur qui double leur Attaque." },
|
|
||||||
"METAL_POWDER": { name: "Poudre Métal", description: "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Défense." },
|
|
||||||
"QUICK_POWDER": { name: "Poudre Vite", description: "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Vitesse." }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "Attaque +",
|
|
||||||
"x_defense": "Défense +",
|
|
||||||
"x_sp_atk": "Atq. Spé. +",
|
|
||||||
"x_sp_def": "Déf. Spé. +",
|
|
||||||
"x_speed": "Vitesse +",
|
|
||||||
"x_accuracy": "Précision +",
|
|
||||||
"dire_hit": "Muscle +",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "Attaque",
|
|
||||||
"DEF": "Défense",
|
|
||||||
"SPATK": "Atq. Spé.",
|
|
||||||
"SPDEF": "Déf. Spé.",
|
|
||||||
"SPD": "Vitesse",
|
|
||||||
"ACC": "Précision",
|
|
||||||
"CRIT": "Taux de critique",
|
|
||||||
"EVA": "Esquive",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
"silk_scarf": "Mouchoir Soie",
|
|
||||||
"black_belt": "Ceinture Noire",
|
|
||||||
"sharp_beak": "Bec Pointu",
|
|
||||||
"poison_barb": "Pic Venin",
|
|
||||||
"soft_sand": "Sable Doux",
|
|
||||||
"hard_stone": "Pierre Dure",
|
|
||||||
"silver_powder": "Poudre Argentée",
|
|
||||||
"spell_tag": "Rune Sort",
|
|
||||||
"metal_coat": "Peau Métal",
|
|
||||||
"charcoal": "Charbon",
|
|
||||||
"mystic_water": "Eau Mystique",
|
|
||||||
"miracle_seed": "Graine Miracle",
|
|
||||||
"magnet": "Aimant",
|
|
||||||
"twisted_spoon": "Cuillère Tordue",
|
|
||||||
"never_melt_ice": "Glace Éternelle",
|
|
||||||
"dragon_fang": "Croc Dragon",
|
|
||||||
"black_glasses": "Lunettes Noires",
|
|
||||||
"fairy_feather": "Plume Enchantée",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "PV Plus",
|
|
||||||
"protein": "Protéine",
|
|
||||||
"iron": "Fer",
|
|
||||||
"calcium": "Calcium",
|
|
||||||
"zinc": "Zinc",
|
|
||||||
"carbos": "Carbone",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "Aucun",
|
|
||||||
|
|
||||||
"LINKING_CORD": "Fil de Liaison",
|
|
||||||
"SUN_STONE": "Pierre Soleil",
|
|
||||||
"MOON_STONE": "Pierre Lune",
|
|
||||||
"LEAF_STONE": "Pierre Plante",
|
|
||||||
"FIRE_STONE": "Pierre Feu",
|
|
||||||
"WATER_STONE": "Pierre Eau",
|
|
||||||
"THUNDER_STONE": "Pierre Foudre",
|
|
||||||
"ICE_STONE": "Pierre Glace",
|
|
||||||
"DUSK_STONE": "Pierre Nuit",
|
|
||||||
"DAWN_STONE": "Pierre Aube",
|
|
||||||
"SHINY_STONE": "Pierre Éclat",
|
|
||||||
"CRACKED_POT": "Théière Fêlée",
|
|
||||||
"SWEET_APPLE": "Pomme Sucrée",
|
|
||||||
"TART_APPLE": "Pomme Acidulée",
|
|
||||||
"STRAWBERRY_SWEET": "Fraise en Sucre",
|
|
||||||
"UNREMARKABLE_TEACUP": "Bol Médiocre",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "Théière Ébréchée",
|
|
||||||
"BLACK_AUGURITE": "Obsidienne",
|
|
||||||
"GALARICA_CUFF": "Bracelet Galanoa",
|
|
||||||
"GALARICA_WREATH": "Couronne Galanoa",
|
|
||||||
"PEAT_BLOCK": "Bloc de Tourbe",
|
|
||||||
"AUSPICIOUS_ARMOR": "Armure de la Fortune",
|
|
||||||
"MALICIOUS_ARMOR": "Armure de la Rancune",
|
|
||||||
"MASTERPIECE_TEACUP": "Bol Exceptionnel",
|
|
||||||
"METAL_ALLOY": "Métal Composite",
|
|
||||||
"SCROLL_OF_DARKNESS": "Rouleau des Ténèbres",
|
|
||||||
"SCROLL_OF_WATERS": "Rouleau de l’Eau",
|
|
||||||
"SYRUPY_APPLE": "Pomme Nectar",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "Aucun",
|
|
||||||
|
|
||||||
"ABOMASITE": "Blizzarite",
|
|
||||||
"ABSOLITE": "Absolite",
|
|
||||||
"AERODACTYLITE": "Ptéraïte",
|
|
||||||
"AGGRONITE": "Galekingite",
|
|
||||||
"ALAKAZITE": "Alakazamite",
|
|
||||||
"ALTARIANITE": "Altarite",
|
|
||||||
"AMPHAROSITE": "Pharampite",
|
|
||||||
"AUDINITE": "Nanméouïte",
|
|
||||||
"BANETTITE": "Branettite",
|
|
||||||
"BEEDRILLITE": "Dardargnite",
|
|
||||||
"BLASTOISINITE": "Tortankite",
|
|
||||||
"BLAZIKENITE": "Braségalite",
|
|
||||||
"CAMERUPTITE": "Caméruptite",
|
|
||||||
"CHARIZARDITE_X": "Dracaufite X",
|
|
||||||
"CHARIZARDITE_Y": "Dracaufite Y",
|
|
||||||
"DIANCITE": "Diancite",
|
|
||||||
"GALLADITE": "Gallamite",
|
|
||||||
"GARCHOMPITE": "Carchacrokite",
|
|
||||||
"GARDEVOIRITE": "Gardevoirite",
|
|
||||||
"GENGARITE": "Ectoplasmite",
|
|
||||||
"GLALITITE": "Oniglalite",
|
|
||||||
"GYARADOSITE": "Léviatorite",
|
|
||||||
"HERACRONITE": "Scarhinoïte",
|
|
||||||
"HOUNDOOMINITE": "Démolossite",
|
|
||||||
"KANGASKHANITE": "Kangourexite",
|
|
||||||
"LATIASITE": "Latiasite",
|
|
||||||
"LATIOSITE": "Latiosite",
|
|
||||||
"LOPUNNITE": "Lockpinite",
|
|
||||||
"LUCARIONITE": "Lucarite",
|
|
||||||
"MANECTITE": "Élecsprintite",
|
|
||||||
"MAWILITE": "Mysdibulite",
|
|
||||||
"MEDICHAMITE": "Charminite",
|
|
||||||
"METAGROSSITE": "Métalossite",
|
|
||||||
"MEWTWONITE_X": "Mewtwoïte X",
|
|
||||||
"MEWTWONITE_Y": "Mewtwoïte Y",
|
|
||||||
"PIDGEOTITE": "Roucarnagite",
|
|
||||||
"PINSIRITE": "Scarabruite",
|
|
||||||
"RAYQUAZITE": "Rayquazite",
|
|
||||||
"SABLENITE": "Ténéfixite",
|
|
||||||
"SALAMENCITE": "Drattakite",
|
|
||||||
"SCEPTILITE": "Jungkite",
|
|
||||||
"SCIZORITE": "Cizayoxite",
|
|
||||||
"SHARPEDONITE": "Sharpedite",
|
|
||||||
"SLOWBRONITE": "Flagadossite",
|
|
||||||
"STEELIXITE": "Steelixite",
|
|
||||||
"SWAMPERTITE": "Laggronite",
|
|
||||||
"TYRANITARITE": "Tyranocivite",
|
|
||||||
"VENUSAURITE": "Florizarrite",
|
|
||||||
|
|
||||||
"BLUE_ORB": "Gemme Bleue",
|
|
||||||
"RED_ORB": "Gemme Rouge",
|
|
||||||
"SHARP_METEORITE": "Méteorite Aiguisée",
|
|
||||||
"HARD_METEORITE": "Méteorite Solide",
|
|
||||||
"SMOOTH_METEORITE": "Méteorite Lisse",
|
|
||||||
"ADAMANT_CRYSTAL": "Globe Adamant",
|
|
||||||
"LUSTROUS_GLOBE": "Globe Perlé",
|
|
||||||
"GRISEOUS_CORE": "Globe Platiné",
|
|
||||||
"REVEAL_GLASS": "Miroir Sacré",
|
|
||||||
"GRACIDEA": "Gracidée",
|
|
||||||
"MAX_MUSHROOMS": "Maxi Champis",
|
|
||||||
"DARK_STONE": "Galet Noir",
|
|
||||||
"LIGHT_STONE": "Galet Blanc",
|
|
||||||
"PRISON_BOTTLE": "Vase Scellé",
|
|
||||||
"N_LUNARIZER": "Necroluna",
|
|
||||||
"N_SOLARIZER": "Necrosol",
|
|
||||||
"RUSTED_SWORD": "Épée Rouillée",
|
|
||||||
"RUSTED_SHIELD": "Bouclier Rouillé",
|
|
||||||
"ICY_REINS_OF_UNITY": "Rênes de l’Unité du Froid",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "Rênes de l’Unité d’Effroi",
|
|
||||||
"WELLSPRING_MASK": "Masque du Puits",
|
|
||||||
"HEARTHFLAME_MASK": "Masque du Fourneau",
|
|
||||||
"CORNERSTONE_MASK": "Masque de la Pierre",
|
|
||||||
"SHOCK_DRIVE": "Module Choc",
|
|
||||||
"BURN_DRIVE": "Module Pyro",
|
|
||||||
"CHILL_DRIVE": "Module Cryo",
|
|
||||||
"DOUSE_DRIVE": "Module Aqua",
|
|
||||||
"ULTRANECROZIUM_Z": "Ultranécrozélite",
|
|
||||||
|
|
||||||
"FIST_PLATE": "Plaque Poing",
|
|
||||||
"SKY_PLATE": "Plaque Ciel",
|
|
||||||
"TOXIC_PLATE": "Plaque Toxicité",
|
|
||||||
"EARTH_PLATE": "Plaque Terre",
|
|
||||||
"STONE_PLATE": "Plaque Roc",
|
|
||||||
"INSECT_PLATE": "Plaque Insecte",
|
|
||||||
"SPOOKY_PLATE": "Plaque Fantôme",
|
|
||||||
"IRON_PLATE": "Plaque Fer",
|
|
||||||
"FLAME_PLATE": "Plaque Flamme",
|
|
||||||
"SPLASH_PLATE": "Plaque Hydro",
|
|
||||||
"MEADOW_PLATE": "Plaque Herbe",
|
|
||||||
"ZAP_PLATE": "Plaque Volt",
|
|
||||||
"MIND_PLATE": "Plaque Esprit",
|
|
||||||
"ICICLE_PLATE": "Plaque Glace",
|
|
||||||
"DRACO_PLATE": "Plaque Draco",
|
|
||||||
"DREAD_PLATE": "Plaque Ombre",
|
|
||||||
"PIXIE_PLATE": "Plaque Pixie",
|
|
||||||
"BLANK_PLATE": "Plaque Renouveau",
|
|
||||||
"LEGEND_PLATE": "Plaque Légende",
|
|
||||||
"FIGHTING_MEMORY": "ROM Combat",
|
|
||||||
"FLYING_MEMORY": "ROM Vol",
|
|
||||||
"POISON_MEMORY": "ROM Poison",
|
|
||||||
"GROUND_MEMORY": "ROM Sol",
|
|
||||||
"ROCK_MEMORY": "ROM Roche",
|
|
||||||
"BUG_MEMORY": "ROM Insecte",
|
|
||||||
"GHOST_MEMORY": "ROM Spectre",
|
|
||||||
"STEEL_MEMORY": "ROM Acier",
|
|
||||||
"FIRE_MEMORY": "ROM Feu",
|
|
||||||
"WATER_MEMORY": "ROM Eau",
|
|
||||||
"GRASS_MEMORY": "ROM Plante",
|
|
||||||
"ELECTRIC_MEMORY": "ROM Électrik",
|
|
||||||
"PSYCHIC_MEMORY": "ROM Psy",
|
|
||||||
"ICE_MEMORY": "ROM Glace",
|
|
||||||
"DRAGON_MEMORY": "ROM Dragon",
|
|
||||||
"DARK_MEMORY": "ROM Ténèbres",
|
|
||||||
"FAIRY_MEMORY": "ROM Fée",
|
|
||||||
"BLANK_MEMORY": "ROM Vierge",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Envoyer",
|
|
||||||
"SUMMARY": "Résumé",
|
|
||||||
"CANCEL": "Annuler",
|
|
||||||
"RELEASE": "Relâcher",
|
|
||||||
"APPLY": "Appliquer",
|
|
||||||
"TEACH": "Apprendre",
|
|
||||||
"SPLICE": "Fusionner",
|
|
||||||
"UNSPLICE": "Séparer",
|
|
||||||
"ACTIVATE": "Activer",
|
|
||||||
"DEACTIVATE": "Désactiver",
|
|
||||||
"TRANSFER": "Transférer",
|
|
||||||
"ALL": "Tout",
|
|
||||||
"PASS_BATON": "Relais",
|
|
||||||
"UNPAUSE_EVOLUTION": "Réactiver Évolution",
|
|
||||||
"REVIVE": "Ranimer",
|
|
||||||
"RENAME": "Renommer",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Sélectionnez un Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "Que faire avec ce Pokémon ?",
|
|
||||||
"noEnergy": "{{pokemonName}} n’a plus l’énergie\nde se battre !",
|
|
||||||
"hasEnergy": "{{pokemonName}} peut toujours\nse battre !",
|
|
||||||
"cantBeUsed": "{{pokemonName}} ne peut pas\nse battre pour ce challenge !",
|
|
||||||
"tooManyItems": "{{pokemonName}} porte trop\nd’exemplaires de cet objet !",
|
|
||||||
"anyEffect": "Cela n’aura aucun effet.",
|
|
||||||
"unpausedEvolutions": "{{pokemonName}} peut de nouveau évoluer.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "Voulez-vous vraiment séparer {{fusionName}}\nde {{pokemonName}} ? {{fusionName}} sera perdu.",
|
|
||||||
"wasReverted": "{{fusionName}} est redevenu {{pokemonName}}.",
|
|
||||||
"releaseConfirmation": "Voulez-vous relâcher {{pokemonName}} ?",
|
|
||||||
"releaseInBattle": "Vous ne pouvez pas relâcher un Pokémon en combat !",
|
|
||||||
"selectAMove": "Sélectionnez une capacité.",
|
|
||||||
"changeQuantity": "Sélect. un objet à transférer.\nChangez la quantité avec < et >.",
|
|
||||||
"selectAnotherPokemonToSplice": "Sélectionnez un autre Pokémon à séparer.",
|
|
||||||
"cancel": "Sortir",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Apte",
|
|
||||||
"notAble": "Pas Apte",
|
|
||||||
"learned": "Appris",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Au revoir, {{pokemonName}} !",
|
|
||||||
"byebye": "Bye-bye, {{pokemonName}} !",
|
|
||||||
"farewell": "Adieu, {{pokemonName}} !",
|
|
||||||
"soLong": "Salut, {{pokemonName}} !",
|
|
||||||
"thisIsWhereWePart": "C’est là qu’on se sépare, {{pokemonName}} !",
|
|
||||||
"illMissYou": "Tu vas me manquer, {{pokemonName}} !",
|
|
||||||
"illNeverForgetYou": "Je ne t’oublierai pas, {{pokemonName}} !",
|
|
||||||
"untilWeMeetAgain": "À la prochaine, {{pokemonName}} !",
|
|
||||||
"sayonara": "Sayonara, {{pokemonName}} !",
|
|
||||||
"smellYaLater": "À la revoyure, {{pokemonName}} !",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const itConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,470 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description: "Ricevi {{pokeballName}} x{{modifierCount}} (Inventario: {{pokeballAmount}}) \nTasso di cattura: {{catchRate}}.",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}.",
|
|
||||||
description: "Ricevi {{voucherTypeName}} x{{modifierCount}}.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}} non può prendere\nquesto oggetto!",
|
|
||||||
"tooMany": "{{pokemonName}} possiede già\nquesto oggetto in abbondanza.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "Restituisce {{restorePoints}} PS o {{restorePercent}}% PS ad un Pokémon, a seconda del valore più alto.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restituisce tutti i PS ad un Pokémon.",
|
|
||||||
"fullyWithStatus": "Restituisce tutti i PS ad un Pokémon e lo cura da ogni problema di stato.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "Rianima un Pokémon esausto e gli restituisce il {{restorePercent}}% dei PS totali.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "Cura tutti i problemi di stato di un Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "Restituisce {{restorePoints}} PP per una mossa di un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restituisce tutti i PP di una mossa.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "Restituisce {{restorePoints}} PP a tutte le mosse di un Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restituisce tutti i PP a tutte le mosse di un Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "Aumenta i PP di una mossa di {{upPoints}} per ogni 5 PP (massimo 3).",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "Menta {{natureName}}.",
|
|
||||||
description: "Cambia la natura del Pokémon in {{natureName}} e sblocca la natura nel menu degli starter.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "Raddoppia la possibilità di imbattersi in doppie battaglie per {{battleCount}} battaglie.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "Aumenta {{tempBattleStatName}} di un livello a tutti i Pokémon nel gruppo per 5 battaglie.",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "Aumenta la potenza delle mosse di tipo {{moveType}} del 20% per un Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "Aumenta il livello di un Pokémon di {{levels}}.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "Aumenta i livell di tutti i Pokémon della squadra di {{levels}}.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "Aumenta {{statName}} di base del possessore del 10%.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "Restituisce il 100% dei PS a tutti i Pokémon.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "Rianima tutti i Pokémon esausti restituendogli tutti i PS.",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "Garantisce una {{moneyMultiplier}} quantità di soldi (₽{{moneyAmount}}).",
|
|
||||||
extra: {
|
|
||||||
"small": "contenuta",
|
|
||||||
"moderate": "moderata",
|
|
||||||
"large": "grande",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "Aumenta il guadagno di Punti Esperienza del {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "Aumenta il guadagno di Punti Esperienza del possessore del {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "Aumenta del 50% il guadagno di amicizia per vittoria.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "Aumenta la precisione delle mosse di {{accuracyAmount}} (massimo 100).",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "Gli attacchi colpiscono una volta in più al costo di una riduzione di potenza del 60/75/82,5% per mossa.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "MT{{moveId}} - {{moveName}}.",
|
|
||||||
description: "Insegna {{moveName}} a un Pokémon.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "MT{{moveId}} - {{moveName}}",
|
|
||||||
description: "Insegna {{moveName}} a un Pokémon\n(Hold C or Shift for more info).",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "Fa evolvere determinate specie di Pokémon.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "Fa cambiare forma a determinati Pokémon.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "Combina due Pokémon (trasferisce i poteri, divide le statistiche e i tipi base, condivide il pool di mosse).",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "Teralite {{teraType}}",
|
|
||||||
description: "Teracristallizza in {{teraType}} il possessore per massimo 10 battaglie.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "Quando il possessore attacca, c'è una probabilità del {{chancePercent}}% che l'oggetto in possesso del nemico gli venga rubato.",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "Ogni turno, il possessore acquisisce un oggetto posseduto dal nemico.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "Aggiunge una probabilità del {{chancePercent}}% di infliggere {{statusEffect}} con le mosse d'attacco.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "Aggiunge una probabilità del {{probabilitàPercent}}% di resistere ad un colpo.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Caramella rara" },
|
|
||||||
"RARER_CANDY": { name: "Caramella molto rara" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "Megapolsiera", description: "Le megapietre diventano disponibili." },
|
|
||||||
"DYNAMAX_BAND": { name: "Polsino Dynamax", description: "I fungomax diventano disponibili." },
|
|
||||||
"TERA_ORB": { name: "Terasfera", description: "I teraliti diventano disponibili." },
|
|
||||||
|
|
||||||
"MAP": { name: "Mappa", description: "Permette di scegliere la propria strada a un bivio." },
|
|
||||||
|
|
||||||
"POTION": { name: "Pozione" },
|
|
||||||
"SUPER_POTION": { name: "Superpozione" },
|
|
||||||
"HYPER_POTION": { name: "Iperpozione" },
|
|
||||||
"MAX_POTION": { name: "Pozione max" },
|
|
||||||
"FULL_RESTORE": { name: "Ricarica totale" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "Revitalizzante" },
|
|
||||||
"MAX_REVIVE": { name: "Revitalizzante max" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Cura totale" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Cenere magica" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Revitalseme", description: "Il possessore recupera 1/2 di PS in caso di KO causato da un colpo diretto." },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "Erbachiara", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." },
|
|
||||||
|
|
||||||
"ETHER": { name: "Etere" },
|
|
||||||
"MAX_ETHER": { name: "Etere max" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "Elisir" },
|
|
||||||
"MAX_ELIXIR": { name: "Elisir max" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "PP-su" },
|
|
||||||
"PP_MAX": { name: "PP-max" },
|
|
||||||
|
|
||||||
"LURE": { name: "Esca" },
|
|
||||||
"SUPER_LURE": { name: "Super esca" },
|
|
||||||
"MAX_LURE": { name: "Esca max" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Fungo della memoria", description: "Permette di insegnare nuovamente una mossa dimenticata ad un Pokémon." },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "Condividi esperienza", description: "Tutti i Pokémon della squadra ricevono il 20% dei Punti Esperienza dalla lotta, anche se non vi hanno partecipato." },
|
|
||||||
"EXP_BALANCE": { name: "Bilancia esperienza", description: "Bilancia i Punti Esperienza ricevuti verso i Pokémon della squadra di livello inferiore." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Ovamuleto", description: "Quando più Pokémon partecipano a una battaglia, ognuno di essi riceve il 10% in più dell'esperienza totale." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "Esperienzamuleto" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "Esperienzamuleto super" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "Esperienzamuleto dorato" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Fortunuovo" },
|
|
||||||
"GOLDEN_EGG": { name: "Uovo dorato" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Calmanella" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "Mirino", description: "Lente che aumenta la probabilità di sferrare brutti colpi." },
|
|
||||||
"LEEK": { name: "Porro", description: "Strumento da dare a Farfetch'd. Lungo gambo di porro che aumenta la probabilità di sferrare brutti colpi." },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "Evolcondensa", description: "Misteriosa materia evolutiva. Aumenta la Difesa e la Difesa Speciale di un Pokémon che può ancora evolversi." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Cuorugiada", description: "Aumenta del 10% l'influenza della natura di un Pokémon sulle sue statistiche (cumulativo)." },
|
|
||||||
|
|
||||||
"NUGGET": { name: "Pepita" },
|
|
||||||
"BIG_NUGGET": { name: "Granpepita" },
|
|
||||||
"RELIC_GOLD": { name: "Dobloantico" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Monetamuleto", description: "Aumenta le ricompense in denaro del 20%." },
|
|
||||||
"GOLDEN_PUNCH": { name: "Pugno dorato", description: "Fornisce il 50% dei danni inflitti sottoforma di denaro." },
|
|
||||||
"COIN_CASE": { name: "Salvadanaio", description: "Dopo ogni 10° battaglia, fornisce il 10% del proprio denaro in interessi." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Capsula scrigno", description: "Permette di bloccare le rarità degli oggetti quando si fa un reroll (i costi variano in base alle rarità)." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Presartigli" },
|
|
||||||
"WIDE_LENS": { name: "Grandelente" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Multilente" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "Curamuleto", description: "Aumenta del 10% l'efficacia delle mosse e degli oggetti che ripristinano i PS (escluse le rianimazioni)." },
|
|
||||||
"CANDY_JAR": { name: "Barattolo di caramelle", description: "Aumenta di 1 il numero di livelli aggiunti dalle caramelle rare." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Porta bacche", description: "Aggiunge il 30% di possibilità che una bacca usata non venga consumata." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Bandana", description: "Il possessore ottiene il 10% di possibilità aggiuntivo di evitare un potenziale KO e rimanere con un solo PS." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Rapidartigli", description: "Aggiunge una probabilità del 10% di muoversi per primi, indipendentemente dalla velocità (priorità escluse)." },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "Roccia di re", description: "Aggiunge il 10% di possibilità che una mossa d'attacco faccia tentennare l'avversario." },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "Avanzi", description: "Ripristina 1/16 dei PS massimi di un Pokémon ogni turno." },
|
|
||||||
"SHELL_BELL": { name: "Conchinella", description: "Cura il possessore di 1/8 del danno inflitto ad un Pokémon." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "Tossicsfera", description: "Sfera bizzarra che iperavvelena chi l’ha con sé in una lotta." },
|
|
||||||
"FLAME_ORB": { name: "Fiammosfera", description: "Sfera bizzarra che procura una scottatura a chi l’ha con sé in una lotta." },
|
|
||||||
|
|
||||||
"BATON": { name: "Staffetta", description: "Permette di trasmettere gli effetti quando si cambia Pokémon, aggirando anche le trappole." },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "Cromamuleto", description: "Misterioso amuleto luminoso che aumenta la probabilità di incontrare Pokémon cromatici." },
|
|
||||||
"ABILITY_CHARM": { name: "Abilitamuleto", description: "Aumenta drasticamente la possibilità che un Pokémon selvatico abbia un'abilità nascosta." },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "Scanner IV", description: "Permette di scansionare gli IV dei Pokémon selvatici. Vengono rivelati 2 IV per ogni scanner. I migliori IV vengono mostrati per primi." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "Cuneo DNA" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Piccolo buco nero" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Poké Ball dorata", description: "Aggiunge 1 opzione di oggetto extra alla fine di ogni battaglia." },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "Gettone del danno", description: "Aumenta i danni inflitti del 5%." },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "Gettone della protezione", description: "Riduce i danni ricevuti del 2.5%." },
|
|
||||||
"ENEMY_HEAL": { name: "Gettone del recupero", description: "Cura il 2% dei PS massimi ogni turno." },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "Gettone del veleno" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Gettone della paralisi" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "Gettone della bruciatura" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Gettone guarigione completa", description: "Aggiunge una probabilità del 2.5% a ogni turno di guarire da un problema di stato." },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "Gettone di resistenza" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { name: "Gettone della fusione", description: "Aggiunge l'1% di possibilità che un Pokémon selvatico sia una fusione." },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "Elettropalla", description: "Strumento da dare a Pikachu. Sfera insolita che aumenta l’Attacco e l’Attacco Speciale." },
|
|
||||||
"THICK_CLUB": { name: "Osso spesso", description: "Strumento da dare a Cubone o Marowak. Osso duro che aumenta l’Attacco." },
|
|
||||||
"METAL_POWDER": { name: "Metalpolvere", description: "Strumento da dare a Ditto. Strana polvere finissima e al tempo stesso dura che migliora la Difesa." },
|
|
||||||
"QUICK_POWDER": { name: "Velopolvere", description: "Strumento da dare a Ditto. Questa strana polvere, fine e al contempo dura, aumenta la Velocità." }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "Attacco X",
|
|
||||||
"x_defense": "Difesa X",
|
|
||||||
"x_sp_atk": "Att. Speciale X",
|
|
||||||
"x_sp_def": "Dif. Speciale X",
|
|
||||||
"x_speed": "Velocità X",
|
|
||||||
"x_accuracy": "Precisione X",
|
|
||||||
"dire_hit": "Supercolpo",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "Attacco",
|
|
||||||
"DEF": "Difesa",
|
|
||||||
"SPATK": "Att. Speciale",
|
|
||||||
"SPDEF": "Dif. Speciale",
|
|
||||||
"SPD": "Velocità",
|
|
||||||
"ACC": "Precisione",
|
|
||||||
"CRIT": "Tasso di brutti colpi",
|
|
||||||
"EVA": "Elusione",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
"silk_scarf": "Sciarpa seta",
|
|
||||||
"black_belt": "Cinturanera",
|
|
||||||
"sharp_beak": "Beccaffilato",
|
|
||||||
"poison_barb": "Velenaculeo",
|
|
||||||
"soft_sand": "Sabbia soffice",
|
|
||||||
"hard_stone": "Pietradura",
|
|
||||||
"silver_powder": "Argenpolvere",
|
|
||||||
"spell_tag": "Spettrotarga",
|
|
||||||
"metal_coat": "Metalcopertura",
|
|
||||||
"charcoal": "Carbonella",
|
|
||||||
"mystic_water": "Acqua magica",
|
|
||||||
"miracle_seed": "Miracolseme",
|
|
||||||
"magnet": "Magnete",
|
|
||||||
"twisted_spoon": "Cucchiaio torto",
|
|
||||||
"never_melt_ice": "Gelomai",
|
|
||||||
"dragon_fang": "Dente di drago",
|
|
||||||
"black_glasses": "Occhialineri",
|
|
||||||
"fairy_feather": "Piuma fatata",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "PS-su",
|
|
||||||
"protein": "Proteina",
|
|
||||||
"iron": "Ferro",
|
|
||||||
"calcium": "Calcio",
|
|
||||||
"zinc": "Zinco",
|
|
||||||
"carbos": "Carburante",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "Nessuno",
|
|
||||||
|
|
||||||
"LINKING_CORD": "Filo dell'unione",
|
|
||||||
"SUN_STONE": "Pietrasolare",
|
|
||||||
"MOON_STONE": "Pietralunare",
|
|
||||||
"LEAF_STONE": "Pietrafoglia",
|
|
||||||
"FIRE_STONE": "Pietrafocaia",
|
|
||||||
"WATER_STONE": "Pietraidrica",
|
|
||||||
"THUNDER_STONE": "Pietratuono",
|
|
||||||
"ICE_STONE": "Pietragelo",
|
|
||||||
"DUSK_STONE": "Neropietra",
|
|
||||||
"DAWN_STONE": "Pietralbore",
|
|
||||||
"SHINY_STONE": "Pietrabrillo",
|
|
||||||
"CRACKED_POT": "Teiera rotta",
|
|
||||||
"SWEET_APPLE": "Dolcepomo",
|
|
||||||
"TART_APPLE": "Aspropomo",
|
|
||||||
"STRAWBERRY_SWEET": "Bonbonfragola",
|
|
||||||
"UNREMARKABLE_TEACUP": "Tazza dozzinale",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "Teiera crepata",
|
|
||||||
"BLACK_AUGURITE": "Augite nera",
|
|
||||||
"GALARICA_CUFF": "Fascia Galarnoce",
|
|
||||||
"GALARICA_WREATH": "Corona Galarnoce",
|
|
||||||
"PEAT_BLOCK": "Blocco di torba",
|
|
||||||
"AUSPICIOUS_ARMOR": "Armatura fausta",
|
|
||||||
"MALICIOUS_ARMOR": "Armatura infausta",
|
|
||||||
"MASTERPIECE_TEACUP": "Tazza eccezionale",
|
|
||||||
"METAL_ALLOY": "Metallo composito",
|
|
||||||
"SCROLL_OF_DARKNESS": "Rotolo del Buio",
|
|
||||||
"SCROLL_OF_WATERS": "Rotolo dell'Acqua",
|
|
||||||
"SYRUPY_APPLE": "Sciroppomo",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "Nessuno",
|
|
||||||
|
|
||||||
"ABOMASITE": "Abomasnowite",
|
|
||||||
"ABSOLITE": "Absolite",
|
|
||||||
"AERODACTYLITE": "Aerodactylite",
|
|
||||||
"AGGRONITE": "Aggronite",
|
|
||||||
"ALAKAZITE": "Alakazamite",
|
|
||||||
"ALTARIANITE": "Altarite",
|
|
||||||
"AMPHAROSITE": "Ampharosite",
|
|
||||||
"AUDINITE": "Audinite",
|
|
||||||
"BANETTITE": "Banettite",
|
|
||||||
"BEEDRILLITE": "Beedrillite",
|
|
||||||
"BLASTOISINITE": "Blastoisite",
|
|
||||||
"BLAZIKENITE": "Blazikenite",
|
|
||||||
"CAMERUPTITE": "Cameruptite",
|
|
||||||
"CHARIZARDITE_X": "Charizardite X",
|
|
||||||
"CHARIZARDITE_Y": "Charizardite Y",
|
|
||||||
"DIANCITE": "Diancite",
|
|
||||||
"GALLADITE": "Galladite",
|
|
||||||
"GARCHOMPITE": "Garchompite",
|
|
||||||
"GARDEVOIRITE": "Gardevoirite",
|
|
||||||
"GENGARITE": "Gengarite",
|
|
||||||
"GLALITITE": "Glalite",
|
|
||||||
"GYARADOSITE": "Gyaradosite",
|
|
||||||
"HERACRONITE": "Heracronite",
|
|
||||||
"HOUNDOOMINITE": "Houndoomite",
|
|
||||||
"KANGASKHANITE": "Kangaskhanite",
|
|
||||||
"LATIASITE": "Latiasite",
|
|
||||||
"LATIOSITE": "Latiosite",
|
|
||||||
"LOPUNNITE": "Lopunnite",
|
|
||||||
"LUCARIONITE": "Lucarite",
|
|
||||||
"MANECTITE": "Manectricite",
|
|
||||||
"MAWILITE": "Mawilite",
|
|
||||||
"MEDICHAMITE": "Medichamite",
|
|
||||||
"METAGROSSITE": "Metagrossite",
|
|
||||||
"MEWTWONITE_X": "Mewtwoite X",
|
|
||||||
"MEWTWONITE_Y": "Mewtwoite Y",
|
|
||||||
"PIDGEOTITE": "Pidgeotite",
|
|
||||||
"PINSIRITE": "Pinsirite",
|
|
||||||
"RAYQUAZITE": "Rayquazite",
|
|
||||||
"SABLENITE": "Sableyite",
|
|
||||||
"SALAMENCITE": "Salamencite",
|
|
||||||
"SCEPTILITE": "Sceptilite",
|
|
||||||
"SCIZORITE": "Scizorite",
|
|
||||||
"SHARPEDONITE": "Sharpedite",
|
|
||||||
"SLOWBRONITE": "Slowbroite",
|
|
||||||
"STEELIXITE": "Steelixite",
|
|
||||||
"SWAMPERTITE": "Swampertite",
|
|
||||||
"TYRANITARITE": "Tyranitarite",
|
|
||||||
"VENUSAURITE": "Venusaurite",
|
|
||||||
|
|
||||||
"BLUE_ORB": "Gemma Blu",
|
|
||||||
"RED_ORB": "Gemma Rossa",
|
|
||||||
"SHARP_METEORITE": "Meteorite Tagliente",
|
|
||||||
"HARD_METEORITE": "Meteorite Dura",
|
|
||||||
"SMOOTH_METEORITE": "Meteorite Liscia",
|
|
||||||
"ADAMANT_CRYSTAL": "Adamasferoide",
|
|
||||||
"LUSTROUS_GLOBE": "Splendisferoide",
|
|
||||||
"GRISEOUS_CORE": "Grigiosferoide",
|
|
||||||
"REVEAL_GLASS": "Verispecchio",
|
|
||||||
"GRACIDEA": "Gracidea",
|
|
||||||
"MAX_MUSHROOMS": "Fungomax",
|
|
||||||
"DARK_STONE": "Scurolite",
|
|
||||||
"LIGHT_STONE": "Chiarolite",
|
|
||||||
"PRISON_BOTTLE": "Vaso del Vincolo",
|
|
||||||
"N_LUNARIZER": "Necrolunix",
|
|
||||||
"N_SOLARIZER": "Necrosolix",
|
|
||||||
"RUSTED_SWORD": "Spada Rovinata",
|
|
||||||
"RUSTED_SHIELD": "Scudo Rovinato",
|
|
||||||
"ICY_REINS_OF_UNITY": "Briglie Legame Giaccio",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "Briglie legame Ombra",
|
|
||||||
"WELLSPRING_MASK": "Maschera Pozzo",
|
|
||||||
"HEARTHFLAME_MASK": "Maschera Focolare",
|
|
||||||
"CORNERSTONE_MASK": "Maschera Fondamenta",
|
|
||||||
"SHOCK_DRIVE": "Voltmodulo",
|
|
||||||
"BURN_DRIVE": "Piromodulo",
|
|
||||||
"CHILL_DRIVE": "Gelomodulo",
|
|
||||||
"DOUSE_DRIVE": "Idromodulo",
|
|
||||||
"ULTRANECROZIUM_Z": "Ultranecrozium Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "Lastrapugno",
|
|
||||||
"SKY_PLATE": "Lastracielo",
|
|
||||||
"TOXIC_PLATE": "Lastrafiele",
|
|
||||||
"EARTH_PLATE": "Lastrageo",
|
|
||||||
"STONE_PLATE": "Lastrapietra",
|
|
||||||
"INSECT_PLATE": "Lastrabaco",
|
|
||||||
"SPOOKY_PLATE": "Lastratetra",
|
|
||||||
"IRON_PLATE": "Lastraferro",
|
|
||||||
"FLAME_PLATE": "Lastrarogo",
|
|
||||||
"SPLASH_PLATE": "Lastraidro",
|
|
||||||
"MEADOW_PLATE": "Lastraprato",
|
|
||||||
"ZAP_PLATE": "Lastrasaetta",
|
|
||||||
"MIND_PLATE": "Lastramente",
|
|
||||||
"ICICLE_PLATE": "Lastragelo",
|
|
||||||
"DRACO_PLATE": "Lastradrakon",
|
|
||||||
"DREAD_PLATE": "Lastratimore",
|
|
||||||
"PIXIE_PLATE": "Lastraspiritello",
|
|
||||||
"BLANK_PLATE": "Lastraripristino",
|
|
||||||
"LEGEND_PLATE": "Lastraleggenda",
|
|
||||||
"FIGHTING_MEMORY": "ROM Lotta",
|
|
||||||
"FLYING_MEMORY": "ROM Volante",
|
|
||||||
"POISON_MEMORY": "ROM Veleno",
|
|
||||||
"GROUND_MEMORY": "ROM Terra",
|
|
||||||
"ROCK_MEMORY": "ROM Roccia",
|
|
||||||
"BUG_MEMORY": "ROM Coleottero",
|
|
||||||
"GHOST_MEMORY": "ROM Spettro",
|
|
||||||
"STEEL_MEMORY": "ROM Acciaio",
|
|
||||||
"FIRE_MEMORY": "ROM Fuoco",
|
|
||||||
"WATER_MEMORY": "ROM Acqua",
|
|
||||||
"GRASS_MEMORY": "ROM Erba",
|
|
||||||
"ELECTRIC_MEMORY": "ROM Elettro",
|
|
||||||
"PSYCHIC_MEMORY": "ROM Psico",
|
|
||||||
"ICE_MEMORY": "ROM Ghiaccio",
|
|
||||||
"DRAGON_MEMORY": "ROM Drago",
|
|
||||||
"DARK_MEMORY": "ROM Buio",
|
|
||||||
"FAIRY_MEMORY": "ROM Folletto",
|
|
||||||
"BLANK_MEMORY": "ROM Vuota",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Manda in campo",
|
|
||||||
"SUMMARY": "Sommario",
|
|
||||||
"CANCEL": "Annulla",
|
|
||||||
"RELEASE": "Rilascia",
|
|
||||||
"APPLY": "Applica",
|
|
||||||
"TEACH": "Insegna",
|
|
||||||
"SPLICE": "Splice",
|
|
||||||
"UNSPLICE": "Unsplice",
|
|
||||||
"ACTIVATE": "Activate",
|
|
||||||
"DEACTIVATE": "Deactivate",
|
|
||||||
"TRANSFER": "Transfer",
|
|
||||||
"ALL": "All",
|
|
||||||
"PASS_BATON": "Pass Baton",
|
|
||||||
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
|
||||||
"REVIVE": "Revive",
|
|
||||||
"RENAME": "Rinomina",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "Do what with this Pokémon?",
|
|
||||||
"noEnergy": "{{pokemonName}} has no energy\nleft to battle!",
|
|
||||||
"hasEnergy": "{{pokemonName}} still has energy\nto battle!",
|
|
||||||
"cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!",
|
|
||||||
"tooManyItems": "{{pokemonName}} has too many\nof this item!",
|
|
||||||
"anyEffect": "It won't have any effect.",
|
|
||||||
"unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.",
|
|
||||||
"wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.",
|
|
||||||
"releaseConfirmation": "Do you really want to release {{pokemonName}}?",
|
|
||||||
"releaseInBattle": "You can't release a Pokémon that's in battle!",
|
|
||||||
"selectAMove": "Select a move.",
|
|
||||||
"changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.",
|
|
||||||
"selectAnotherPokemonToSplice": "Select another Pokémon to splice.",
|
|
||||||
"cancel": "Cancel",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Able",
|
|
||||||
"notAble": "Not able",
|
|
||||||
"learned": "Learned",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Goodbye, {{pokemonName}}!",
|
|
||||||
"byebye": "Byebye, {{pokemonName}}!",
|
|
||||||
"farewell": "Farewell, {{pokemonName}}!",
|
|
||||||
"soLong": "So long, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "This is where we part, {{pokemonName}}!",
|
|
||||||
"illMissYou": "I'll miss you, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "I'll never forget you, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "Until we meet again, {{pokemonName}}!",
|
|
||||||
"sayonara": "Sayonara, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "Smell ya later, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const jaConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const koConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,470 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{pokeballName}} {{modifierCount}}개",
|
|
||||||
description: "{{pokeballName}} {{modifierCount}}개 (현재: {{pokeballAmount}}개)를 획득한다.\n포획률: {{catchRate}}",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{voucherTypeName}} {{modifierCount}}장",
|
|
||||||
description: "{{voucherTypeName}} {{modifierCount}}장을 획득한다.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}}[[는]]\n이 아이템을 얻을 수 없다!",
|
|
||||||
"tooMany": "{{pokemonName}}[[는]]\n이 아이템을 너무 많이 갖고 있다!",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "포켓몬 1마리의 HP를 {{restorePoints}} 또는 {{restorePercent}}% 중\n높은 수치만큼 회복한다.",
|
|
||||||
extra: {
|
|
||||||
"fully": "포켓몬 1마리의 HP를 모두 회복한다.",
|
|
||||||
"fullyWithStatus": "포켓몬 1마리의 HP와 상태 이상을 모두 회복한다.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "기절해 버린 포켓몬 1마리의 HP를 {{restorePercent}}%까지 회복한다.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "포켓몬 1마리의 상태 이상을 모두 회복한다.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "포켓몬이 기억하고 있는 기술 중 1개의 PP를 {{restorePoints}}만큼 회복한다.",
|
|
||||||
extra: {
|
|
||||||
"fully": "포켓몬이 기억하고 있는 기술 중 1개의 PP를 모두 회복한다.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "포켓몬이 기억하고 있는 4개의 기술 PP를 {{restorePoints}}씩 회복한다.",
|
|
||||||
extra: {
|
|
||||||
"fully": "포켓몬이 기억하고 있는 4개의 기술 PP를 모두 회복한다.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "포켓몬이 기억하고 있는 기술 중 1개의 PP 최대치를 5마다 {{upPoints}}씩 상승시킨다. (최대 3)",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "{{natureName}}민트",
|
|
||||||
description: "포켓몬의 성격을 {{natureName}}[[로]] 바꾸고 스타팅에도 등록한다.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "{{battleCount}}번의 배틀 동안 더블 배틀이 등장할 확률이 두 배가 된다.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "자신의 모든 포켓몬이 5번의 배틀 동안 {{tempBattleStatName}}[[가]] 한 단계 증가한다."
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "지니게 하면 {{moveType}}타입 기술의 위력이 20% 상승한다.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "포켓몬 1마리의 레벨이 {{levels}}만큼 상승한다.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "자신의 모든 포켓몬의 레벨이 {{levels}}만큼 상승한다.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "지니게 하면 {{statName}} 종족값을 10% 올려준다. 개체값이 높을수록 더 많이 누적시킬 수 있다.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "자신의 포켓몬의 HP를 모두 회복한다.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "기절해 버린 포켓몬 전원의 HP를 완전히 회복한다.",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "{{moneyMultiplier}} 양의 돈을 획득한다. (₽{{moneyAmount}})",
|
|
||||||
extra: {
|
|
||||||
"small": "적은",
|
|
||||||
"moderate": "적당한",
|
|
||||||
"large": "많은",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "포켓몬이 받는 경험치가 {{boostPercent}}% 증가한다.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "지니게 한 포켓몬은 받는 경험치가 {{boostPercent}}% 증가한다.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "배틀 승리로 얻는 친밀도가 50% 증가한다.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "기술의 명중률이 {{accuracyAmount}} 증가한다. (최대 100)",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "지닌 개수(최대 3개)마다 추가 공격을 하는 대신, 공격력이 60%(1개)/75%(2개)/82.5%(3개)만큼 감소합니다.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "No.{{moveId}} {{moveName}}",
|
|
||||||
description: "포켓몬에게 {{moveName}}[[를]] 가르침.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "No.{{moveId}} {{moveName}}",
|
|
||||||
description: "포켓몬에게 {{moveName}}[[를]] 가르침.\n(C 또는 Shift를 꾹 눌러 정보 확인)",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "어느 특정 포켓몬을 진화시킨다.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "어느 특정 포켓몬을 폼 체인지시킨다.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "두 포켓몬을 결합시킨다. (특성 변환, 종족값과 타입 분배, 기술폭 공유)",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "테라피스 {{teraType}}",
|
|
||||||
description: "지니게 하면 10번의 배틀 동안 {{teraType}} 테라스탈타입으로 테라스탈한다.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "공격했을 때, {{chancePercent}}%의 확률로 상대의 도구를 도둑질한다.",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "매 턴, 지닌 포켓몬은 상대로부터 도구를 하나 획득한다.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "공격했을 때 {{statusEffect}} 상태로 만들 확률이 {{chancePercent}}% 추가된다.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "받은 공격을 버텨낼 확률이 {{chancePercent}}% 추가된다.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "이상한사탕" },
|
|
||||||
"RARER_CANDY": { name: "더이상한사탕" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "메가링", description: "메가스톤을 사용할 수 있게 된다." },
|
|
||||||
"DYNAMAX_BAND": { name: "다이맥스 밴드", description: "다이버섯을 사용할 수 있게 된다." },
|
|
||||||
"TERA_ORB": { name: "테라스탈오브", description: "테라피스를 사용할 수 있게 된다." },
|
|
||||||
|
|
||||||
"MAP": { name: "지도", description: "갈림길에서 목적지를 선택할 수 있다." },
|
|
||||||
|
|
||||||
"POTION": { name: "상처약" },
|
|
||||||
"SUPER_POTION": { name: "좋은상처약" },
|
|
||||||
"HYPER_POTION": { name: "고급상처약" },
|
|
||||||
"MAX_POTION": { name: "풀회복약" },
|
|
||||||
"FULL_RESTORE": { name: "회복약" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "기력의조각" },
|
|
||||||
"MAX_REVIVE": { name: "기력의덩어리" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "만병통치제" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "성스러운분말" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "부활의씨앗", description: "포켓몬이 공격을 받고 쓰러지려 할 때 HP를 절반 회복한다." },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "하양허브", description: "지니게 한 포켓몬의 능력이 떨어졌을 때 원래 상태로 돌아온다." },
|
|
||||||
|
|
||||||
"ETHER": { name: "PP에이드" },
|
|
||||||
"MAX_ETHER": { name: "PP회복" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "PP에이더" },
|
|
||||||
"MAX_ELIXIR": { name: "PP맥스" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "포인트업" },
|
|
||||||
"PP_MAX": { name: "포인트맥스" },
|
|
||||||
|
|
||||||
"LURE": { name: "더블배틀코롱" },
|
|
||||||
"SUPER_LURE": { name: "실버코롱" },
|
|
||||||
"MAX_LURE": { name: "골드코롱" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "기억버섯", description: "포켓몬이 잊어버린 기술을 떠올린다." },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "학습장치", description: "배틀에 참여하지 않아도 20%의 경험치를 받을 수 있게 된다." },
|
|
||||||
"EXP_BALANCE": { name: "균형학습장치", description: "레벨이 낮은 포켓몬이 받는 경험치를 가중시킨다." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "둥근부적", description: "여러 마리의 포켓몬이 배틀에 참여할 경우, 전체 경험치의 10%씩을 추가로 획득한다." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "경험부적" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "좋은경험부적" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "황금경험부적" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "행복의알" },
|
|
||||||
"GOLDEN_EGG": { name: "황금의알" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "평온의방울" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "초점렌즈", description: "약점이 보이는 렌즈. 지니게 한 포켓몬의 기술이 급소에 맞기 쉬워진다." },
|
|
||||||
"LEEK": { name: "대파", description: "매우 길고 단단한 줄기. 파오리에게 지니게 하면 기술이 급소에 맞기 쉬워진다." },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "진화의휘석", description: "진화의 이상한 덩어리. 지니게 하면 진화 전 포켓몬의 방어와 특수방어가 올라간다." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "마음의물방울", description: "지닌 포켓몬의 성격의 효과가 10% 증가한다. (합연산)" },
|
|
||||||
|
|
||||||
"NUGGET": { name: "금구슬" },
|
|
||||||
"BIG_NUGGET": { name: "큰금구슬" },
|
|
||||||
"RELIC_GOLD": { name: "고대의금화" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "부적금화", description: "받는 돈이 20% 증가한다." },
|
|
||||||
"GOLDEN_PUNCH": { name: "골든펀치", description: "주는 데미지의 50%만큼 돈을 획득한다." },
|
|
||||||
"COIN_CASE": { name: "동전케이스", description: "매 열 번째 배틀마다, 가진 돈의 10%를 이자로 획득한다." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "록캡슐", description: "받을 아이템을 갱신할 때 희귀도를 고정시킬 수 있게 된다." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "끈기갈고리손톱" },
|
|
||||||
"WIDE_LENS": { name: "광각렌즈" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "멀티렌즈" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "치유의부적", description: "HP를 회복하는 기술이나 도구를 썼을 때 효율이 10% 증가한다. (부활 제외)" },
|
|
||||||
"CANDY_JAR": { name: "사탕단지", description: "이상한사탕 종류의 아이템이 올려주는 레벨이 1 증가한다." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "열매주머니", description: "사용한 나무열매가 소모되지 않을 확률이 30% 추가된다." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "기합의머리띠", description: "기절할 듯한 데미지를 받아도 HP를 1 남겨서 견딜 확률이 10% 추가된다." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "선제공격손톱", description: "상대보다 먼저 행동할 수 있게 될 확률이 10% 추가된다. (우선도 처리 이후)" },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "왕의징표석", description: "공격해서 데미지를 줄 때 상대를 풀죽일 확률이 10% 추가된다." },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "먹다남은음식", description: "포켓몬의 HP가 매 턴 최대 체력의 1/16씩 회복된다." },
|
|
||||||
"SHELL_BELL": { name: "조개껍질방울", description: "포켓몬이 준 데미지의 1/8씩을 회복한다." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "맹독구슬", description: "이 도구를 지닌 포켓몬은 턴이 끝나는 시점에 상태이상에 걸리지 않았다면 맹독 상태가 된다." },
|
|
||||||
"FLAME_ORB": { name: "화염구슬", description: "이 도구를 지닌 포켓몬은 턴이 끝나는 시점에 상태이상에 걸리지 않았다면 화상 상태가 된다." },
|
|
||||||
|
|
||||||
"BATON": { name: "바톤", description: "포켓몬을 교체할 때 효과를 넘겨줄 수 있으며, 함정의 영향을 받지 않게 함" },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "빛나는부적", description: "야생 포켓몬이 색이 다른 포켓몬으로 등장할 확률을 급격히 높인다." },
|
|
||||||
"ABILITY_CHARM": { name: "특성부적", description: "야생 포켓몬이 숨겨진 특성을 가지고 등장할 확률을 급격히 높인다." },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "개체값탐지기", description: "야생 포켓몬의 개체값을 확인 가능하다. 높은 값부터, 확인할 수 있는 개체값이 두 종류씩 추가된다." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "유전자쐐기" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "미니 블랙홀" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "황금몬스터볼", description: "전투 후 획득하는 아이템의 선택지가 하나 더 늘어난다." },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "데미지 토큰", description: "주는 데미지를 5% 증가시킨다." },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "보호 토큰", description: "받는 데미지를 2.5% 감소시킨다." },
|
|
||||||
"ENEMY_HEAL": { name: "회복 토큰", description: "매 턴 최대 체력의 2%를 회복한다." },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "독 토큰" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "마비 토큰" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "화상 토큰" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "만병통치 토큰", description: "매 턴 상태이상에서 회복될 확률이 2.5% 추가된다." },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "버티기 토큰" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { name: "합체 토큰", description: "야생 포켓몬이 합체되어 등장할 확률이 1% 추가된다." },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "전기구슬", description: "피카츄에게 지니게 하면 공격과 특수공격이 올라가는 이상한 구슬." },
|
|
||||||
"THICK_CLUB": { name: "굵은뼈", description: "무언가의 단단한 뼈. 탕구리 혹은 텅구리에게 지니게 하면 공격이 올라간다." },
|
|
||||||
"METAL_POWDER": { name: "금속파우더", description: "메타몽에게 지니게 하면 방어가 올라가는 이상한 가루. 매우 잘고 단단하다." },
|
|
||||||
"QUICK_POWDER": { name: "스피드파우더", description: "메타몽에게 지니게 하면 스피드가 올라가는 이상한 가루. 매우 잘고 단단하다." }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "플러스파워",
|
|
||||||
"x_defense": "디펜드업",
|
|
||||||
"x_sp_atk": "스페셜업",
|
|
||||||
"x_sp_def": "스페셜가드",
|
|
||||||
"x_speed": "스피드업",
|
|
||||||
"x_accuracy": "잘-맞히기",
|
|
||||||
"dire_hit": "크리티컬커터",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "공격",
|
|
||||||
"DEF": "방어",
|
|
||||||
"SPATK": "특수공격",
|
|
||||||
"SPDEF": "특수방어",
|
|
||||||
"SPD": "스피드",
|
|
||||||
"ACC": "명중률",
|
|
||||||
"CRIT": "급소율",
|
|
||||||
"EVA": "회피율",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
"silk_scarf": "실크스카프",
|
|
||||||
"black_belt": "검은띠",
|
|
||||||
"sharp_beak": "예리한부리",
|
|
||||||
"poison_barb": "독바늘",
|
|
||||||
"soft_sand": "부드러운모래",
|
|
||||||
"hard_stone": "딱딱한돌",
|
|
||||||
"silver_powder": "은빛가루",
|
|
||||||
"spell_tag": "저주의부적",
|
|
||||||
"metal_coat": "금속코트",
|
|
||||||
"charcoal": "목탄",
|
|
||||||
"mystic_water": "신비의물방울",
|
|
||||||
"miracle_seed": "기적의씨",
|
|
||||||
"magnet": "자석",
|
|
||||||
"twisted_spoon": "휘어진스푼",
|
|
||||||
"never_melt_ice": "녹지않는얼음",
|
|
||||||
"dragon_fang": "용의이빨",
|
|
||||||
"black_glasses": "검은안경",
|
|
||||||
"fairy_feather": "요정의깃털",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "맥스업",
|
|
||||||
"protein": "타우린",
|
|
||||||
"iron": "사포닌",
|
|
||||||
"calcium": "리보플라빈",
|
|
||||||
"zinc": "키토산",
|
|
||||||
"carbos": "알칼로이드",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "None",
|
|
||||||
|
|
||||||
"LINKING_CORD": "연결의끈",
|
|
||||||
"SUN_STONE": "태양의돌",
|
|
||||||
"MOON_STONE": "달의돌",
|
|
||||||
"LEAF_STONE": "리프의돌",
|
|
||||||
"FIRE_STONE": "불꽃의돌",
|
|
||||||
"WATER_STONE": "물의돌",
|
|
||||||
"THUNDER_STONE": "천둥의돌",
|
|
||||||
"ICE_STONE": "얼음의돌",
|
|
||||||
"DUSK_STONE": "어둠의돌",
|
|
||||||
"DAWN_STONE": "각성의돌",
|
|
||||||
"SHINY_STONE": "빛의돌",
|
|
||||||
"CRACKED_POT": "깨진포트",
|
|
||||||
"SWEET_APPLE": "달콤한사과",
|
|
||||||
"TART_APPLE": "새콤한사과",
|
|
||||||
"STRAWBERRY_SWEET": "딸기사탕공예",
|
|
||||||
"UNREMARKABLE_TEACUP": "범작찻잔",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "이빠진포트",
|
|
||||||
"BLACK_AUGURITE": "검은휘석",
|
|
||||||
"GALARICA_CUFF": "가라두구팔찌",
|
|
||||||
"GALARICA_WREATH": "가라두구머리장식",
|
|
||||||
"PEAT_BLOCK": "피트블록",
|
|
||||||
"AUSPICIOUS_ARMOR": "축복받은갑옷",
|
|
||||||
"MALICIOUS_ARMOR": "저주받은갑옷",
|
|
||||||
"MASTERPIECE_TEACUP": "걸작찻잔",
|
|
||||||
"METAL_ALLOY": "복합금속",
|
|
||||||
"SCROLL_OF_DARKNESS": "악의 족자",
|
|
||||||
"SCROLL_OF_WATERS": "물의 족자",
|
|
||||||
"SYRUPY_APPLE": "꿀맛사과",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "None",
|
|
||||||
|
|
||||||
"ABOMASITE": "눈설왕나이트",
|
|
||||||
"ABSOLITE": "앱솔나이트",
|
|
||||||
"AERODACTYLITE": "프테라나이트",
|
|
||||||
"AGGRONITE": "보스로라나이트",
|
|
||||||
"ALAKAZITE": "후딘나이트",
|
|
||||||
"ALTARIANITE": "파비코리나이트",
|
|
||||||
"AMPHAROSITE": "전룡나이트",
|
|
||||||
"AUDINITE": "다부니나이트",
|
|
||||||
"BANETTITE": "다크펫나이트",
|
|
||||||
"BEEDRILLITE": "독침붕나이트",
|
|
||||||
"BLASTOISINITE": "거북왕나이트",
|
|
||||||
"BLAZIKENITE": "번치코나이트",
|
|
||||||
"CAMERUPTITE": "폭타나이트",
|
|
||||||
"CHARIZARDITE_X": "리자몽나이트 X",
|
|
||||||
"CHARIZARDITE_Y": "리자몽나이트 Y",
|
|
||||||
"DIANCITE": "디안시나이트",
|
|
||||||
"GALLADITE": "엘레이드나이트",
|
|
||||||
"GARCHOMPITE": "한카리아스나이트",
|
|
||||||
"GARDEVOIRITE": "가디안나이트",
|
|
||||||
"GENGARITE": "팬텀나이트",
|
|
||||||
"GLALITITE": "얼음귀신나이트",
|
|
||||||
"GYARADOSITE": "갸라도스나이트",
|
|
||||||
"HERACRONITE": "헤라크로스나이트",
|
|
||||||
"HOUNDOOMINITE": "헬가나이트",
|
|
||||||
"KANGASKHANITE": "캥카나이트",
|
|
||||||
"LATIASITE": "라티아스나이트",
|
|
||||||
"LATIOSITE": "라티오스나이트",
|
|
||||||
"LOPUNNITE": "이어롭나이트",
|
|
||||||
"LUCARIONITE": "루카리오나이트",
|
|
||||||
"MANECTITE": "썬더볼트나이트",
|
|
||||||
"MAWILITE": "입치트나이트",
|
|
||||||
"MEDICHAMITE": "요가램나이트",
|
|
||||||
"METAGROSSITE": "메타그로스나이트",
|
|
||||||
"MEWTWONITE_X": "뮤츠나이트 X",
|
|
||||||
"MEWTWONITE_Y": "뮤츠나이트 Y",
|
|
||||||
"PIDGEOTITE": "피죤투나이트",
|
|
||||||
"PINSIRITE": "쁘사이저나이트",
|
|
||||||
"RAYQUAZITE": "레쿠쟈나이트",
|
|
||||||
"SABLENITE": "깜까미나이트",
|
|
||||||
"SALAMENCITE": "보만다나이트",
|
|
||||||
"SCEPTILITE": "나무킹나이트",
|
|
||||||
"SCIZORITE": "핫삼나이트",
|
|
||||||
"SHARPEDONITE": "샤크니아나이트",
|
|
||||||
"SLOWBRONITE": "야도란나이트",
|
|
||||||
"STEELIXITE": "강철톤나이트",
|
|
||||||
"SWAMPERTITE": "대짱이나이트",
|
|
||||||
"TYRANITARITE": "마기라스나이트",
|
|
||||||
"VENUSAURITE": "이상해꽃나이트",
|
|
||||||
|
|
||||||
"BLUE_ORB": "쪽빛구슬",
|
|
||||||
"RED_ORB": "주홍구슬",
|
|
||||||
"SHARP_METEORITE": "뾰족한운석",
|
|
||||||
"HARD_METEORITE": "단단한운석",
|
|
||||||
"SMOOTH_METEORITE": "부드러운운석",
|
|
||||||
"ADAMANT_CRYSTAL": "큰금강옥",
|
|
||||||
"LUSTROUS_GLOBE": "큰백옥",
|
|
||||||
"GRISEOUS_CORE": "큰백금옥",
|
|
||||||
"REVEAL_GLASS": "비추는거울",
|
|
||||||
"GRACIDEA": "그라시데아꽃",
|
|
||||||
"MAX_MUSHROOMS": "다이버섯",
|
|
||||||
"DARK_STONE": "다크스톤",
|
|
||||||
"LIGHT_STONE": "라이트스톤",
|
|
||||||
"PRISON_BOTTLE": "굴레의항아리",
|
|
||||||
"N_LUNARIZER": "네크로플러스루나",
|
|
||||||
"N_SOLARIZER": "네크로플러스솔",
|
|
||||||
"RUSTED_SWORD": "녹슨검",
|
|
||||||
"RUSTED_SHIELD": "녹슨방패",
|
|
||||||
"ICY_REINS_OF_UNITY": "차가운유대의고삐",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "검은유대의고삐",
|
|
||||||
"WELLSPRING_MASK": "우물의가면",
|
|
||||||
"HEARTHFLAME_MASK": "화덕의가면",
|
|
||||||
"CORNERSTONE_MASK": "주춧돌의가면",
|
|
||||||
"SHOCK_DRIVE": "번개카세트",
|
|
||||||
"BURN_DRIVE": "블레이즈카세트",
|
|
||||||
"CHILL_DRIVE": "프리즈카세트",
|
|
||||||
"DOUSE_DRIVE": "아쿠아카세트",
|
|
||||||
"ULTRANECROZIUM_Z": "울트라네크로Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "주먹플레이트",
|
|
||||||
"SKY_PLATE": "푸른하늘플레이트",
|
|
||||||
"TOXIC_PLATE": "맹독플레이트",
|
|
||||||
"EARTH_PLATE": "대지플레이트",
|
|
||||||
"STONE_PLATE": "암석플레이트",
|
|
||||||
"INSECT_PLATE": "비단벌레플레이트",
|
|
||||||
"SPOOKY_PLATE": "원령플레이트",
|
|
||||||
"IRON_PLATE": "강철플레이트",
|
|
||||||
"FLAME_PLATE": "불구슬플레이트",
|
|
||||||
"SPLASH_PLATE": "물방울플레이트",
|
|
||||||
"MEADOW_PLATE": "초록플레이트",
|
|
||||||
"ZAP_PLATE": "우뢰플레이트",
|
|
||||||
"MIND_PLATE": "이상한플레이트",
|
|
||||||
"ICICLE_PLATE": "고드름플레이트",
|
|
||||||
"DRACO_PLATE": "용의플레이트",
|
|
||||||
"DREAD_PLATE": "공포플레이트",
|
|
||||||
"PIXIE_PLATE": "정령플레이트",
|
|
||||||
"BLANK_PLATE": "순백플레이트",
|
|
||||||
"LEGEND_PLATE": "레전드플레이트",
|
|
||||||
"FIGHTING_MEMORY": "파이팅메모리",
|
|
||||||
"FLYING_MEMORY": "플라잉메모리",
|
|
||||||
"POISON_MEMORY": "포이즌메모리",
|
|
||||||
"GROUND_MEMORY": "그라운드메모리",
|
|
||||||
"ROCK_MEMORY": "록메모리",
|
|
||||||
"BUG_MEMORY": "버그메모리",
|
|
||||||
"GHOST_MEMORY": "고스트메모리",
|
|
||||||
"STEEL_MEMORY": "스틸메모리",
|
|
||||||
"FIRE_MEMORY": "파이어메모리",
|
|
||||||
"WATER_MEMORY": "워터메모리",
|
|
||||||
"GRASS_MEMORY": "그래스메모리",
|
|
||||||
"ELECTRIC_MEMORY": "일렉트릭메모리",
|
|
||||||
"PSYCHIC_MEMORY": "사이킥메모리",
|
|
||||||
"ICE_MEMORY": "아이스메모리",
|
|
||||||
"DRAGON_MEMORY": "드래곤메모리",
|
|
||||||
"DARK_MEMORY": "다크메모리",
|
|
||||||
"FAIRY_MEMORY": "페어리메모리",
|
|
||||||
"BLANK_MEMORY": "빈메모리",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "교체한다",
|
|
||||||
"SUMMARY": "능력치를 본다",
|
|
||||||
"CANCEL": "그만둔다",
|
|
||||||
"RELEASE": "놓아준다",
|
|
||||||
"APPLY": "사용한다",
|
|
||||||
"TEACH": "가르친다",
|
|
||||||
"SPLICE": "융합",
|
|
||||||
"UNSPLICE": "융합 해제",
|
|
||||||
"ACTIVATE": "발동",
|
|
||||||
"DEACTIVATE": "해제",
|
|
||||||
"TRANSFER": "건넨다",
|
|
||||||
"ALL": "전부",
|
|
||||||
"PASS_BATON": "배턴터치한다",
|
|
||||||
"UNPAUSE_EVOLUTION": "진화 재개",
|
|
||||||
"REVIVE": "되살린다",
|
|
||||||
"RENAME": "닉네임 바꾸기",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "포켓몬을 선택하세요.",
|
|
||||||
"doWhatWithThisPokemon": "포켓몬을 어떻게 하겠습니까?",
|
|
||||||
"noEnergy": "{{pokemonName}}[[는]] 싸울 수 있는\n기력이 남아 있지 않습니다!",
|
|
||||||
"hasEnergy": "{{pokemonName}}[[는]]\n아직도 힘이 넘친다!",
|
|
||||||
"cantBeUsed": "{{pokemonName}}[[는]] 이 챌린지에서는\n쓸 수 없습니다.",
|
|
||||||
"tooManyItems": "{{pokemonName}}[[는]] 지닌 도구의 수가\n너무 많습니다",
|
|
||||||
"anyEffect": "써도 효과가 없다.",
|
|
||||||
"unpausedEvolutions": "{{pokemonName}}의 진화가 재개되었다.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "{{pokemonName}}로부터 {{fusionName}}의 융합을 해제하시겠습니까?\n{{fusionName}}는 사라지게 됩니다.",
|
|
||||||
"wasReverted": "{{fusionName}}은 {{pokemonName}}의 모습으로 돌아갔습니다!",
|
|
||||||
"releaseConfirmation": "{{pokemonName}}[[를]]\n정말 놓아주겠습니까?",
|
|
||||||
"releaseInBattle": "전투 중인 포켓몬은\n놓아줄 수 없습니다.",
|
|
||||||
"selectAMove": "기술을 선택해 주십시오",
|
|
||||||
"changeQuantity": "건네줄 지닌 도구를 선택해 주십시오.\n< 와 > 로 수량을 변경할 수 있습니다.",
|
|
||||||
"selectAnotherPokemonToSplice": "융합할 포켓몬을 선택해 주십시오.",
|
|
||||||
"cancel": "그만둔다",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "배운다!",
|
|
||||||
"notAble": "배우지 못함",
|
|
||||||
"learned": "알고 있다",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "잘 가, {{pokemonName}}!",
|
|
||||||
"byebye": "바이바이, {{pokemonName}}!",
|
|
||||||
"farewell": "작별이야, {{pokemonName}}!",
|
|
||||||
"soLong": "안녕, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "여기서 헤어지자, {{pokemonName}}!",
|
|
||||||
"illMissYou": "보고 싶을거야, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "잊지 못할거야, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "다시 만날 때까지, {{pokemonName}}!",
|
|
||||||
"sayonara": "사요나라, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "또 보자, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const ptBrConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory: runHistory,
|
|
||||||
};
|
|
@ -1,470 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description: "Ganhe {{modifierCount}}x {{pokeballName}} (Mochila: {{pokeballAmount}}) \nChance de captura: {{catchRate}}.",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
|
||||||
description: "Ganhe {{modifierCount}}x {{voucherTypeName}}.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}} não pode\nsegurar esse item!",
|
|
||||||
"tooMany": "{{pokemonName}} tem muitos\nmuitos deste item!",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "Restaura {{restorePoints}} PS ou {{restorePercent}}% PS de um Pokémon, o que for maior.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaura totalmente os PS de um Pokémon.",
|
|
||||||
"fullyWithStatus": "Restaura totalmente os PS de um Pokémon e cura qualquer mudança de estado.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "Reanima um Pokémon e restaura {{restorePercent}}% PS.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "Cura uma mudança de estado de um Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "Restaura {{restorePoints}} PP para um movimento de um Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaura todos os PP para um movimento de um Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "Restaura {{restorePoints}} PP para todos os movimentos de um Pokémon.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restaura todos os PP para todos os movimentos de um Pokémon.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "Aumenta permanentemente os PP para o movimento de um Pokémon em {{upPoints}} para cada 5 PP máximos (máximo 3).",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "Hortelã {{natureName}}",
|
|
||||||
description: "Muda a natureza do Pokémon para {{natureName}} e a desbloqueia permanentemente.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "Dobra as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "Aumenta o atributo de {{tempBattleStatName}} para todos os membros da equipe por 5 batalhas.",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "Aumenta o poder dos ataques do tipo {{moveType}} de um Pokémon em 20%.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "Aumenta em {{levels}} o nível de um Pokémon.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "Aumenta em {{levels}} o nível de todos os membros da equipe.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "Aumenta o atributo base de {{statName}} em 10%. Quanto maior os IVs, maior o limite de aumento.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "Restaura totalmente os PS de todos os Pokémon.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "Reanima todos os Pokémon, restaurando totalmente seus PS.",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "Garante uma quantidade {{moneyMultiplier}} de dinheiro (₽{{moneyAmount}}).",
|
|
||||||
extra: {
|
|
||||||
"small": "pequena",
|
|
||||||
"moderate": "moderada",
|
|
||||||
"large": "grande",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "Aumenta o ganho de pontos de experiência em {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "Aumenta o ganho de pontos de experiência de quem segura em {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "Aumenta o ganho de amizade por vitória em 50%.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "Aumenta a precisão dos movimentos em {{accuracyAmount}} (máximo 100).",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "Ataques acertam uma vez adicional ao custo de uma redução de poder de 60/75/82.5% por item, respectivamente.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "Ensina {{moveName}} a um Pokémon.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "Ensina {{moveName}} a um Pokémon\n(Segure C ou Shift para mais informações).",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "Faz certos Pokémon evoluírem.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "Faz certos Pokémon mudarem de forma.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "Combina dois Pokémon (transfere Habilidade, divide os atributos base e tipos, compartilha os movimentos).",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "Fragmento Tera {{teraType}}",
|
|
||||||
description: "Terastalize um Pokémon para o tipo {{teraType}} por 10 ondas.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "Quando atacar, tem {{chancePercent}}% de chance de roubar um item do oponente.",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "Todo turno, o Pokémon ganha um item aleatório do oponente.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "Ganha {{chancePercent}}% de chance de infligir {{statusEffect}} com ataques.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "Ganha {{chancePercent}}% de chance de sobreviver a um ataque que o faria desmaiar.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Doce Raro" },
|
|
||||||
"RARER_CANDY": { name: "Doce Raríssimo" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "Mega Bracelete", description: "Mega Pedras ficam disponíveis." },
|
|
||||||
"DYNAMAX_BAND": { name: "Bracelete Dynamax", description: "Cogumáximos ficam disponíveis." },
|
|
||||||
"TERA_ORB": { name: "Orbe Tera", description: "Fragmentos Tera ficam disponíveis." },
|
|
||||||
|
|
||||||
"MAP": { name: "Mapa", description: "Permite escolher a próxima rota." },
|
|
||||||
|
|
||||||
"POTION": { name: "Poção" },
|
|
||||||
"SUPER_POTION": { name: "Super Poção" },
|
|
||||||
"HYPER_POTION": { name: "Hiper Poção" },
|
|
||||||
"MAX_POTION": { name: "Poção Máxima" },
|
|
||||||
"FULL_RESTORE": { name: "Restaurador" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "Reanimador" },
|
|
||||||
"MAX_REVIVE": { name: "Reanimador Máximo" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Cura Total" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Cinza Sagrada" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Semente Reanimadora", description: "Após desmaiar por um ataque direto, reanima com 50% de PS." },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "Erva Branca", description: "Restaura quaisquer atributos diminuídos em batalha." },
|
|
||||||
|
|
||||||
"ETHER": { name: "Éter" },
|
|
||||||
"MAX_ETHER": { name: "Éter Máximo" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "Elixir" },
|
|
||||||
"MAX_ELIXIR": { name: "Elixir Máximo" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "Mais PP" },
|
|
||||||
"PP_MAX": { name: "PP Máximo" },
|
|
||||||
|
|
||||||
"LURE": { name: "Incenso" },
|
|
||||||
"SUPER_LURE": { name: "Super Incenso" },
|
|
||||||
"MAX_LURE": { name: "Incenso Máximo" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Cogumemória", description: "Relembra um movimento esquecido." },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "Compart. de Exp.", description: "Distribui pontos de experiência para todos os membros da equipe." },
|
|
||||||
"EXP_BALANCE": { name: "Balanceador de Exp.", description: "Distribui pontos de experiência principalmente para os Pokémon mais fracos." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Amuleto Oval", description: "Quando vários Pokémon participam de uma batalha, cada um recebe 10% extra de pontos de experiência." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "Amuleto de Exp." },
|
|
||||||
"SUPER_EXP_CHARM": { name: "Super Amuleto de Exp." },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "Amuleto de Exp. Dourado" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Ovo da Sorte" },
|
|
||||||
"GOLDEN_EGG": { name: "Ovo Dourado" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Guizo" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "Lentes de Mira", description: "Estas lentes facilitam o foco em pontos fracos. Aumenta a chance de acerto crítico de quem a segurar." },
|
|
||||||
"LEEK": { name: "Alho-poró", description: "Esse talo de alho-poró muito longo e rígido aumenta a taxa de acerto crítico dos movimentos do Farfetch'd." },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "Eviolita", description: "Esse misterioso caroço evolutivo aumenta os atributos de Defesa e Def. Esp. quando segurado por um Pokémon que ainda pode evoluir." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Joia da Alma", description: "Aumenta a influência da natureza de um Pokémon em seus atributos em 10% (cumulativo)." },
|
|
||||||
|
|
||||||
"NUGGET": { name: "Pepita" },
|
|
||||||
"BIG_NUGGET": { name: "Pepita Grande" },
|
|
||||||
"RELIC_GOLD": { name: "Relíquia de Ouro" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Moeda Amuleto", description: "Aumenta a recompensa de dinheiro em 50%." },
|
|
||||||
"GOLDEN_PUNCH": { name: "Soco Dourado", description: "Concede 50% do dano causado em dinheiro." },
|
|
||||||
"COIN_CASE": { name: "Moedeira", description: "Após cada 10ª batalha, recebe 10% de seu dinheiro em juros." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Cápsula de Travamento", description: "Permite que você trave raridades de itens ao rolar novamente." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Garra-Aperto" },
|
|
||||||
"WIDE_LENS": { name: "Lente Ampla" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Multi Lentes" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "Amuleto de Cura", description: "Aumenta a eficácia dos movimentos e itens que restauram PS em 10% (exceto Reanimador)." },
|
|
||||||
"CANDY_JAR": { name: "Pote de Doces", description: "Aumenta o número de níveis adicionados pelo Doce Raro em 1." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Bolsa de Berries", description: "Adiciona uma chance de 30% de que uma berry usada não seja consumida." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Bandana", description: "Adiciona uma chance de 10% de sobreviver com 1 PS após ser danificado o suficiente para desmaiar." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Garra Rápida", description: "Adiciona uma chance de 10% de atacar primeiro, ignorando sua velocidade (após prioridades)." },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "Pedra do Rei", description: "Adiciona uma chance de 10% de movimentos fazerem o oponente hesitar." },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "Sobras", description: "Cura 1/16 dos PS máximos de um Pokémon a cada turno." },
|
|
||||||
"SHELL_BELL": { name: "Concha-Sino", description: "Cura 1/8 do dano causado por um Pokémon." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "Esfera Tóxica", description: "Uma esfera estranha que exala toxinas quando tocada e envenena seriamente quem a segurar." },
|
|
||||||
"FLAME_ORB": { name: "Esfera da Chama", description: "Uma esfera estranha que aquece quando tocada e queima quem a segurar." },
|
|
||||||
|
|
||||||
"BATON": { name: "Bastão", description: "Permite passar mudanças de atributo ao trocar Pokémon, ignorando armadilhas." },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "Amuleto Brilhante", description: "Aumenta drasticamente a chance de um Pokémon selvagem ser Shiny." },
|
|
||||||
"ABILITY_CHARM": { name: "Amuleto de Habilidade", description: "Aumenta drasticamente a chance de um Pokémon selvagem ter uma Habilidade Oculta." },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "Scanner de IVs", description: "Permite escanear os IVs de Pokémon selvagens. 2 IVs são revelados por item. Os melhores IVs são mostrados primeiro." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "Splicer de DNA" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Mini Buraco Negro" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Poké Bola Dourada", description: "Adiciona 1 opção de item extra ao final de cada batalha." },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "Token de Dano", description: "Aumenta o dano em 5%." },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "Token de Proteção", description: "Reduz o dano recebido em 2,5%." },
|
|
||||||
"ENEMY_HEAL": { name: "Token de Recuperação", description: "Cura 2% dos PS máximos a cada turno." },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "Token de Veneno" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Token de Paralisia" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "Token de Queimadura" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Token de Cura Total", description: "Adiciona uma chance de 2.5% a cada turno de curar uma condição de status." },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "Token de Persistência" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { name: "Token de Fusão", description: "Adiciona uma chance de 1% de que um Pokémon selvagem seja uma fusão." },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "Bola de Luz", description: "Orbe intrigante que aumenta os atributos de Ataque e Ataque Esp. de Pikachu." },
|
|
||||||
"THICK_CLUB": { name: "Osso Grosso", description: "Este duro osso de origem desconhecida aumenta o atributo de Ataque de Cubone ou Marowak." },
|
|
||||||
"METAL_POWDER": { name: "Pó Metálico", description: "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Defesa de Ditto." },
|
|
||||||
"QUICK_POWDER": { name: "Pó Veloz", description: "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Velocidade de Ditto." }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "Ataque X",
|
|
||||||
"x_defense": "Defesa X",
|
|
||||||
"x_sp_atk": "Ataque Esp. X",
|
|
||||||
"x_sp_def": "Defesa Esp. X",
|
|
||||||
"x_speed": "Velocidade X",
|
|
||||||
"x_accuracy": "Precisão X",
|
|
||||||
"dire_hit": "Direto",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "Ataque",
|
|
||||||
"DEF": "Defesa",
|
|
||||||
"SPATK": "Ataque Esp.",
|
|
||||||
"SPDEF": "Defesa Esp.",
|
|
||||||
"SPD": "Velocidade",
|
|
||||||
"ACC": "Precisão",
|
|
||||||
"CRIT": "Chance de Acerto Crítico",
|
|
||||||
"EVA": "Evasão",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
"silk_scarf": "Lenço de Seda",
|
|
||||||
"black_belt": "Faixa Preta",
|
|
||||||
"sharp_beak": "Bico Afiado",
|
|
||||||
"poison_barb": "Farpa Venenosa",
|
|
||||||
"soft_sand": "Areia Macia",
|
|
||||||
"hard_stone": "Pedra Dura",
|
|
||||||
"silver_powder": "Pó de Prata",
|
|
||||||
"spell_tag": "Talismã de Feitiço",
|
|
||||||
"metal_coat": "Revestimento Metálico",
|
|
||||||
"charcoal": "Carvão",
|
|
||||||
"mystic_water": "Água Mística",
|
|
||||||
"miracle_seed": "Semente Milagrosa",
|
|
||||||
"magnet": "Ímã",
|
|
||||||
"twisted_spoon": "Colher Torcida",
|
|
||||||
"never_melt_ice": "Gelo Eterno",
|
|
||||||
"dragon_fang": "Presa de Dragão",
|
|
||||||
"black_glasses": "Óculos Escuros",
|
|
||||||
"fairy_feather": "Pena de Fada",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "Mais PS",
|
|
||||||
"protein": "Proteína",
|
|
||||||
"iron": "Ferro",
|
|
||||||
"calcium": "Cálcio",
|
|
||||||
"zinc": "Zinco",
|
|
||||||
"carbos": "Carboidrato",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "None",
|
|
||||||
|
|
||||||
"LINKING_CORD": "Cabo de Conexão",
|
|
||||||
"SUN_STONE": "Pedra do Sol",
|
|
||||||
"MOON_STONE": "Pedra da Lua",
|
|
||||||
"LEAF_STONE": "Pedra da Folha",
|
|
||||||
"FIRE_STONE": "Pedra do Fogo",
|
|
||||||
"WATER_STONE": "Pedra da Água",
|
|
||||||
"THUNDER_STONE": "Pedra do Trovão",
|
|
||||||
"ICE_STONE": "Pedra do Gelo",
|
|
||||||
"DUSK_STONE": "Pedra do Crepúsculo",
|
|
||||||
"DAWN_STONE": "Pedra da Alvorada",
|
|
||||||
"SHINY_STONE": "Pedra Brilhante",
|
|
||||||
"CRACKED_POT": "Vaso Quebrado",
|
|
||||||
"SWEET_APPLE": "Maçã Doce",
|
|
||||||
"TART_APPLE": "Maçã Azeda",
|
|
||||||
"STRAWBERRY_SWEET": "Doce de Morango",
|
|
||||||
"UNREMARKABLE_TEACUP": "Xícara Comum",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "Pote Lascado",
|
|
||||||
"BLACK_AUGURITE": "Mineral Negro",
|
|
||||||
"GALARICA_CUFF": "Bracelete de Galar",
|
|
||||||
"GALARICA_WREATH": "Coroa de Galar",
|
|
||||||
"PEAT_BLOCK": "Bloco de Turfa",
|
|
||||||
"AUSPICIOUS_ARMOR": "Armadura Prometida",
|
|
||||||
"MALICIOUS_ARMOR": "Armadura Maldita",
|
|
||||||
"MASTERPIECE_TEACUP": "Xícara Excepcional",
|
|
||||||
"METAL_ALLOY": "Liga de Metal",
|
|
||||||
"SCROLL_OF_DARKNESS": "Pergaminho da Escuridão",
|
|
||||||
"SCROLL_OF_WATERS": "Pergaminho da Água",
|
|
||||||
"SYRUPY_APPLE": "Xarope de Maçã",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "None",
|
|
||||||
|
|
||||||
"ABOMASITE": "Abomasita",
|
|
||||||
"ABSOLITE": "Absolita",
|
|
||||||
"AERODACTYLITE": "Aerodactylita",
|
|
||||||
"AGGRONITE": "Aggronita",
|
|
||||||
"ALAKAZITE": "Alakazita",
|
|
||||||
"ALTARIANITE": "Altarianita",
|
|
||||||
"AMPHAROSITE": "Ampharosita",
|
|
||||||
"AUDINITE": "Audinita",
|
|
||||||
"BANETTITE": "Banettita",
|
|
||||||
"BEEDRILLITE": "Beedrillita",
|
|
||||||
"BLASTOISINITE": "Blastoisinita",
|
|
||||||
"BLAZIKENITE": "Blazikenita",
|
|
||||||
"CAMERUPTITE": "Cameruptita",
|
|
||||||
"CHARIZARDITE X": "Charizardita X",
|
|
||||||
"CHARIZARDITE Y": "Charizardita Y",
|
|
||||||
"DIANCITE": "Diancita",
|
|
||||||
"GALLADITE": "Galladita",
|
|
||||||
"GARCHOMPITE": "Garchompita",
|
|
||||||
"GARDEVOIRITE": "Gardevoirita",
|
|
||||||
"GENGARITE": "Gengarita",
|
|
||||||
"GLALITITE": "Glalitita",
|
|
||||||
"GYARADOSITE": "Gyaradosita",
|
|
||||||
"HERACRONITE": "Heracronita",
|
|
||||||
"HOUNDOOMINITE": "Houndoominita",
|
|
||||||
"KANGASKHANITE": "Kangaskhanita",
|
|
||||||
"LATIASITE": "Latiasita",
|
|
||||||
"LATIOSITE": "Latiosita",
|
|
||||||
"LOPUNNITE": "Lopunnita",
|
|
||||||
"LUCARIONITE": "Lucarionita",
|
|
||||||
"MANECTITE": "Manectita",
|
|
||||||
"MAWILITE": "Mawilita",
|
|
||||||
"MEDICHAMITE": "Medichamita",
|
|
||||||
"METAGROSSITE": "Metagrossita",
|
|
||||||
"MEWTWONITE X": "Mewtwonita X",
|
|
||||||
"MEWTWONITE Y": "Mewtwonita Y",
|
|
||||||
"PIDGEOTITE": "Pidgeotita",
|
|
||||||
"PINSIRITE": "Pinsirita",
|
|
||||||
"SABLENITE": "Sablenita",
|
|
||||||
"RAYQUAZITE": "Rayquazita",
|
|
||||||
"SALAMENCITE": "Salamencita",
|
|
||||||
"SCEPTILITE": "Sceptilita",
|
|
||||||
"SCIZORITE": "Scizorita",
|
|
||||||
"SHARPEDONITE": "Sharpedonita",
|
|
||||||
"SLOWBRONITE": "Slowbronita",
|
|
||||||
"STEELIXITE": "Steelixita",
|
|
||||||
"SWAMPERTITE": "Swampertita",
|
|
||||||
"TYRANITARITE": "Tyranitarita",
|
|
||||||
"VENUSAURITE": "Venusaurita",
|
|
||||||
|
|
||||||
"BLUE_ORB": "Orbe Azul",
|
|
||||||
"RED_ORB": "Orbe Vermelha",
|
|
||||||
"SHARP_METEORITE": "Meteorito Afiado",
|
|
||||||
"HARD_METEORITE": "Meteorito Duro",
|
|
||||||
"SMOOTH_METEORITE": " Meteorito Liso",
|
|
||||||
"ADAMANT_CRYSTAL": "Cristal Adamante",
|
|
||||||
"LUSTROUS_GLOBE": "Globo Brilhante",
|
|
||||||
"GRISEOUS_CORE": "Núcleo Platinado",
|
|
||||||
"REVEAL_GLASS": "Espelho da Verdade",
|
|
||||||
"GRACIDEA": "Gracídea",
|
|
||||||
"MAX_MUSHROOMS": "Cogumáximo",
|
|
||||||
"DARK_STONE": "Pedra das Trevas",
|
|
||||||
"LIGHT_STONE": "Pedra da Luz",
|
|
||||||
"PRISON_BOTTLE": "Garrafa Prisão",
|
|
||||||
"N_LUNARIZER": "Lunarizador N",
|
|
||||||
"N_SOLARIZER": "Solarizador N",
|
|
||||||
"RUSTED_SWORD": "Espada Enferrujada",
|
|
||||||
"RUSTED_SHIELD": "Escudo Enferrujado",
|
|
||||||
"ICY_REINS_OF_UNITY": "Rédeas de Gelo da União",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "Rédeas Sombrias da União",
|
|
||||||
"WELLSPRING_MASK": "Máscara Nascente",
|
|
||||||
"HEARTHFLAME_MASK": "Máscara Fornalha",
|
|
||||||
"CORNERSTONE_MASK": "Máscara Alicerce",
|
|
||||||
"SHOCK_DRIVE": "MagneDisco",
|
|
||||||
"BURN_DRIVE": "IgneDisco",
|
|
||||||
"CHILL_DRIVE": "CrioDisco",
|
|
||||||
"DOUSE_DRIVE": "HidroDisco",
|
|
||||||
"ULTRANECROZIUM_Z": "Ultranecrozium Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "Placa do Punho",
|
|
||||||
"SKY_PLATE": "Placa do Céu",
|
|
||||||
"TOXIC_PLATE": "Placa Tóxica",
|
|
||||||
"EARTH_PLATE": "Placa Terrestre",
|
|
||||||
"STONE_PLATE": "Placa de Pedra",
|
|
||||||
"INSECT_PLATE": "Placa de Insetos",
|
|
||||||
"SPOOKY_PLATE": "Placa Assustadora",
|
|
||||||
"IRON_PLATE": "Placa de Ferro",
|
|
||||||
"FLAME_PLATE": "Placa da Chama",
|
|
||||||
"SPLASH_PLATE": "Placa de Respingo",
|
|
||||||
"MEADOW_PLATE": "Placa da Planície",
|
|
||||||
"ZAP_PLATE": "Placa Elétrica",
|
|
||||||
"MIND_PLATE": "Placa Mental",
|
|
||||||
"ICICLE_PLATE": "Placa de Gelo",
|
|
||||||
"DRACO_PLATE": "Placa do Dragão",
|
|
||||||
"DREAD_PLATE": "Placa Sombria",
|
|
||||||
"PIXIE_PLATE": "Placa de Fada",
|
|
||||||
"BLANK_PLATE": "Placa em Branco",
|
|
||||||
"LEGEND_PLATE": "Placa Lendária",
|
|
||||||
"FIGHTING_MEMORY": "Memória de Lutador",
|
|
||||||
"FLYING_MEMORY": "Memória Voadora",
|
|
||||||
"POISON_MEMORY": "Memória Venenosa",
|
|
||||||
"GROUND_MEMORY": "Memória Terrestre",
|
|
||||||
"ROCK_MEMORY": "Memória da Rocha",
|
|
||||||
"BUG_MEMORY": "Memória de Insetos",
|
|
||||||
"GHOST_MEMORY": "Memória Fantasma",
|
|
||||||
"STEEL_MEMORY": "Memória de Aço",
|
|
||||||
"FIRE_MEMORY": "Memória de Fogo",
|
|
||||||
"WATER_MEMORY": "Memória da Água",
|
|
||||||
"GRASS_MEMORY": "Memória de Planta",
|
|
||||||
"ELECTRIC_MEMORY": "Memória Elétrica",
|
|
||||||
"PSYCHIC_MEMORY": "Memória Psíquica",
|
|
||||||
"ICE_MEMORY": "Memória de Gelo",
|
|
||||||
"DRAGON_MEMORY": "Memória do Dragão",
|
|
||||||
"DARK_MEMORY": "Memória Sombria",
|
|
||||||
"FAIRY_MEMORY": "Memória de Fada",
|
|
||||||
"BLANK_MEMORY": "Memória Vazia",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Trocar",
|
|
||||||
"SUMMARY": "Sumário",
|
|
||||||
"CANCEL": "Cancelar",
|
|
||||||
"RELEASE": "Soltar",
|
|
||||||
"APPLY": "Aplicar",
|
|
||||||
"TEACH": "Ensinar",
|
|
||||||
"SPLICE": "Fundir",
|
|
||||||
"UNSPLICE": "Separar",
|
|
||||||
"ACTIVATE": "Ativar",
|
|
||||||
"DEACTIVATE": "Desativar",
|
|
||||||
"TRANSFER": "Transferir",
|
|
||||||
"ALL": "Tudo",
|
|
||||||
"PASS_BATON": "Passar Bastão",
|
|
||||||
"UNPAUSE_EVOLUTION": "Ativar Evolução",
|
|
||||||
"REVIVE": "Reviver",
|
|
||||||
"RENAME": "Renomear",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Escolha um Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "O que você deseja fazer?",
|
|
||||||
"noEnergy": "{{pokemonName}} não pode\nmais batalhar!",
|
|
||||||
"hasEnergy": "{{pokemonName}} ainda\npode batalhar!",
|
|
||||||
"cantBeUsed": "{{pokemonName}} não pode\nser usado neste desafio!",
|
|
||||||
"tooManyItems": "{{pokemonName}} já tem\nmuitos desse item!",
|
|
||||||
"anyEffect": "Isso não terá nenhum efeito.",
|
|
||||||
"unpausedEvolutions": "Evoluções foram despausadas para {{pokemonName}}.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "Você realmente deseja desfazer a fusão de {{fusionName}}\ncom {{pokemonName}}? {{fusionName}} será perdido.",
|
|
||||||
"wasReverted": "{{fusionName}} foi revertido para {{pokemonName}}.",
|
|
||||||
"releaseConfirmation": "Você realmente deseja soltar {{pokemonName}}?",
|
|
||||||
"releaseInBattle": "Você não pode soltar um Pokémon que está em batalha!",
|
|
||||||
"selectAMove": "Selecione um movimento.",
|
|
||||||
"changeQuantity": "Selecione um item para transferir.\nUse < e > para mudar a quantidade.",
|
|
||||||
"selectAnotherPokemonToSplice": "Selecione outro Pokémon para fundir.",
|
|
||||||
"cancel": "Voltar",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Capaz",
|
|
||||||
"notAble": "Incapaz",
|
|
||||||
"learned": "Aprendido",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Adeus, {{pokemonName}}!",
|
|
||||||
"byebye": "Tchau, {{pokemonName}}!",
|
|
||||||
"farewell": "Até mais, {{pokemonName}}!",
|
|
||||||
"soLong": "Até logo, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "Aqui é onde nos separamos, {{pokemonName}}!",
|
|
||||||
"illMissYou": "Vou sentir saudades, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "Nunca vou esquecer de você, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "Até nos encontrarmos novamente, {{pokemonName}}!",
|
|
||||||
"sayonara": "Sayonara, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "Te vejo depois, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const zhCnConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,470 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description: "获得 {{pokeballName}} x{{modifierCount}} (已有:{{pokeballAmount}}) \n捕捉倍率:{{catchRate}}。",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
|
||||||
description: "获得 {{voucherTypeName}} x{{modifierCount}}。",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}} 无法携带\n这个物品!",
|
|
||||||
"tooMany": "{{pokemonName}} 已有太多\n这个物品!",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "为一只宝可梦回复{{restorePoints}}HP或{{restorePercent}}%HP,取较大值。",
|
|
||||||
extra: {
|
|
||||||
"fully": "为一只宝可梦回复全部HP。",
|
|
||||||
"fullyWithStatus": "为一只宝可梦回复全部HP并消除所有负面\n状态。",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "复活一只宝可梦并回复 {{restorePercent}}% HP。",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "为一只宝可梦消除所有负面状态。",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "为一只宝可梦的一个招式回复 {{restorePoints}} PP。",
|
|
||||||
extra: {
|
|
||||||
"fully": "完全回复一只宝可梦一个招式的PP。",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "为一只宝可梦的所有招式回复 {{restorePoints}} PP。",
|
|
||||||
extra: {
|
|
||||||
"fully": "为一只宝可梦的所有招式回复所有PP。",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "选择一只宝可梦的一个招式使用\n使其PP最大值提升基础的20% (最多3次)。",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "{{natureName}}薄荷",
|
|
||||||
description: "将一只宝可梦的性格改为{{natureName}}并为\n该宝可梦永久解锁该性格。",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "接下来的{{battleCount}}场战斗是双打的概率翻倍。",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "为所有成员宝可梦提升一级{{tempBattleStatName}},持续5场战斗。",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "一只宝可梦的{{moveType}}系招式威力提升20%。",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "使一只宝可梦的等级提升{{levels}}级。",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "使一只寶可夢的等級提升{{levels}}級。",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "增加10%持有者的{{statName}},\n个体值越高堆叠上限越高。",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "所有宝可梦完全回复HP。",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "复活所有濒死的宝可梦,\n并完全回复HP。",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "获得{{moneyMultiplier}}金钱(₽{{moneyAmount}})。",
|
|
||||||
extra: {
|
|
||||||
"small": "少量",
|
|
||||||
"moderate": "中等",
|
|
||||||
"large": "大量",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "经验值获取量增加{{boostPercent}}%。",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "持有者经验值获取量增加{{boostPercent}}%。",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "每场战斗获得的好感度提升50%。",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "招式命中率增加{{accuracyAmount}}(最大100)。",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "攻击以40/25/12.5%的伤害造成2/3/4次伤害",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "招式学习器\n{{moveId}} - {{moveName}}",
|
|
||||||
description: "教会一只宝可梦{{moveName}}。",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "招式学习器\n{{moveId}} - {{moveName}}",
|
|
||||||
description: "教会一只宝可梦{{moveName}}\n(按住C或者Shift查看更多信息)。",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "使某些宝可梦进化。",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "使某些宝可梦更改形态。",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "融合两只宝可梦 (改变特性, 平分基础点数\n和属性, 共享招式池)。",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "{{teraType}}太晶碎块",
|
|
||||||
description: "持有者获得{{teraType}}太晶化,\n持续10场战斗。",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "攻击时{{chancePercent}}%概率\n偷取对手物品。",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "持有者每回合从对手那里\n获得一个持有的物品。",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "攻击时{{chancePercent}}%概率造成{{statusEffect}}。",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "敌方增加{{chancePercent}}%的概率\n在本回合不会倒下。",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "神奇糖果" },
|
|
||||||
"RARER_CANDY": { name: "超神奇糖果" },
|
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "MEGA手镯", description: "能让携带着MEGA石战斗的宝可梦\n进行MEGA进化。" },
|
|
||||||
"DYNAMAX_BAND": { name: "极巨腕带", description: "能让携带着极巨菇菇战斗的宝可梦\n进行超极巨化。" },
|
|
||||||
"TERA_ORB": { name: "太晶珠", description: "能让携带着太晶碎块战斗的宝可梦\n进行太晶化。" },
|
|
||||||
|
|
||||||
"MAP": { name: "地图", description: "有概率允许你在切换地区时\n选择目的地。"},
|
|
||||||
|
|
||||||
"POTION": { name: "伤药" },
|
|
||||||
"SUPER_POTION": { name: "好伤药" },
|
|
||||||
"HYPER_POTION": { name: "厉害伤药" },
|
|
||||||
"MAX_POTION": { name: "全满药" },
|
|
||||||
"FULL_RESTORE": { name: "全复药" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "活力碎片" },
|
|
||||||
"MAX_REVIVE": { name: "活力块" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "万灵药" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "圣灰" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "复活种子", description: "受到技能攻击伤害濒死时,\n恢复该宝可梦的HP至1/2。" },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "白色香草", description: "当携带它的宝可梦能力降低时,\n仅能回到之前的状态1次。" },
|
|
||||||
|
|
||||||
"ETHER": { name: "PP单项小补剂" },
|
|
||||||
"MAX_ETHER": { name: "PP单项全补剂" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "PP多项小补剂" },
|
|
||||||
"MAX_ELIXIR": { name: "PP多项全补剂" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "PP提升剂" },
|
|
||||||
"PP_MAX": { name: "PP极限提升剂" },
|
|
||||||
|
|
||||||
"LURE": { name: "引虫香水" },
|
|
||||||
"SUPER_LURE": { name: "白银香水" },
|
|
||||||
"MAX_LURE": { name: "黄金香水" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "回忆蘑菇", description: "回忆一个宝可梦已经遗忘的招式。" },
|
|
||||||
|
|
||||||
"EXP_SHARE": { name: "学习装置", description: "未参加对战的宝可梦获得20%的经验值。" },
|
|
||||||
"EXP_BALANCE": { name: "均衡型学习装置", description: "经验值会更多分给队伍中等级最低的宝可梦。" },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "圆形护符", description: "当多只宝可梦参与战斗,分别获得总经验值\n10%的额外经验值。" },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "经验护符" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "超级经验护符" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "黄金经验护符" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "幸运蛋" },
|
|
||||||
"GOLDEN_EGG": { name: "金蛋" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "安抚之铃" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "焦点镜", description: "能看见弱点的镜片。携带它的宝可梦的招式\n会变得容易击中要害。" },
|
|
||||||
"LEEK": { name: "大葱", description: "非常长且坚硬的茎。让大葱鸭携带后,\n招式会变得容易击中要害。" },
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "进化奇石", description: "携带后,还能进化的宝可梦的\n防御和特防就会提高。" },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "心之水滴", description: "增加10%宝可梦性格对数值的影响 (加算)。" },
|
|
||||||
|
|
||||||
"NUGGET": { name: "金珠" },
|
|
||||||
"BIG_NUGGET": { name: "巨大金珠" },
|
|
||||||
"RELIC_GOLD": { name: "古代金币" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "护符金币", description: "获得的金钱增加20%。" },
|
|
||||||
"GOLDEN_PUNCH": { name: "黄金拳头", description: "将50%造成的伤害转换为金钱。" },
|
|
||||||
"COIN_CASE": { name: "代币盒", description: "每10场战斗, 获得自己金钱10%的利息。" },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "上锁的容器", description: "允许在商店中刷新物品时,\n锁定物品的稀有度。" },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "紧缠钩爪" },
|
|
||||||
"WIDE_LENS": { name: "广角镜" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "多重镜" },
|
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "治愈护符", description: "HP回复量增加10% (不含复活)。" },
|
|
||||||
"CANDY_JAR": { name: "糖果罐", description: "神奇糖果提供的升级额外增加1级。" },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "树果袋", description: "使用树果时有30%的几率不会消耗树果。" },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "气势头带", description: "携带该道具的宝可梦有10%几率在受到攻击\n而将陷入濒死状态时,保留1点HP不陷入濒死状态。" },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "先制之爪", description: "有10%的几率无视速度优先使出招式\n(先制技能优先)。" },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "王者之证", description: "使用任意原本不会造成畏缩状态的攻击,\n有10%几率使目标陷入畏缩状态。" },
|
|
||||||
|
|
||||||
"LEFTOVERS": { name: "吃剩的东西", description: "携带后,在每个回合结束时恢复\n最大HP的1/16。" },
|
|
||||||
"SHELL_BELL": { name: "贝壳之铃", description: "携带后,在攻击对方成功造成伤害时,\n携带者的HP会恢复其所造成伤害的1/8。" },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "剧毒宝珠", description: "触碰后会放出毒的神奇宝珠。\n携带后,在战斗时会变成剧毒状态。" },
|
|
||||||
"FLAME_ORB": { name: "火焰宝珠", description: "触碰后会放出热量的神奇宝珠。\n携带后,在战斗时会变成灼伤状态。" },
|
|
||||||
|
|
||||||
"BATON": { name: "接力棒", description: "允许在切换宝可梦时保留能力变化, 对陷阱\n同样生效。" },
|
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "闪耀护符", description: "显著增加野生宝可梦的闪光概率。" },
|
|
||||||
"ABILITY_CHARM": { name: "特性护符", description: "显著增加野生宝可梦有隐藏特性的概率。" },
|
|
||||||
|
|
||||||
"IV_SCANNER": { name: "个体值探测器", description: "允许扫描野生宝可梦的个体值。每多拥有一个\n多显示两项个体值,优先显示最高项。" },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "基因之楔" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "迷你黑洞" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "黄金精灵球", description: "在每场战斗结束后,增加一个额外物品选项。" },
|
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "伤害硬币", description: "造成5%额外伤害(乘算)。" },
|
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "防御硬币", description: "受到2.5%更少伤害(乘算)。" },
|
|
||||||
"ENEMY_HEAL": { name: "回复硬币", description: "每回合回复2%最大HP。" },
|
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "剧毒硬币" },
|
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "麻痹硬币" },
|
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "灼烧硬币" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "万灵药硬币", description: "增加2.5%每回合治愈异常状态的概率。" },
|
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "忍受硬币" },
|
|
||||||
"ENEMY_FUSED_CHANCE": { name: "融合硬币", description: "增加1%野生融合宝可梦出现概率。" },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "电气球", description: "让皮卡丘携带后,\n攻击和特攻就会提高的神奇之球。" },
|
|
||||||
"THICK_CLUB": { name: "粗骨头", description: "某种坚硬的骨头。\n让卡拉卡拉或嘎啦嘎啦携带后,攻击就会提高。" },
|
|
||||||
"METAL_POWDER": { name: "金属粉", description: "让百变怪携带后,防御就会提高的神奇粉末。\n非常细腻坚硬。" },
|
|
||||||
"QUICK_POWDER": { name: "速度粉", description: "让百变怪携带后,速度就会提高的神奇粉末。\n非常细腻坚硬。" }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
"x_attack": "力量强化",
|
|
||||||
"x_defense": "防御强化",
|
|
||||||
"x_sp_atk": "特攻强化",
|
|
||||||
"x_sp_def": "特防强化",
|
|
||||||
"x_speed": "速度强化",
|
|
||||||
"x_accuracy": "命中强化",
|
|
||||||
"dire_hit": "要害攻击",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "攻击",
|
|
||||||
"DEF": "防御",
|
|
||||||
"SPATK": "特攻",
|
|
||||||
"SPDEF": "特防",
|
|
||||||
"SPD": "速度",
|
|
||||||
"ACC": "命中",
|
|
||||||
"CRIT": "会心",
|
|
||||||
"EVA": "闪避",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
"silk_scarf": "丝绸围巾",
|
|
||||||
"black_belt": "黑带",
|
|
||||||
"sharp_beak": "锐利鸟嘴",
|
|
||||||
"poison_barb": "毒针",
|
|
||||||
"soft_sand": "柔软沙子",
|
|
||||||
"hard_stone": "硬石头",
|
|
||||||
"silver_powder": "银粉",
|
|
||||||
"spell_tag": "诅咒之符",
|
|
||||||
"metal_coat": "金属膜",
|
|
||||||
"charcoal": "木炭",
|
|
||||||
"mystic_water": "神秘水滴",
|
|
||||||
"miracle_seed": "奇迹种子",
|
|
||||||
"magnet": "磁铁",
|
|
||||||
"twisted_spoon": "弯曲的汤匙",
|
|
||||||
"never_melt_ice": "不融冰",
|
|
||||||
"dragon_fang": "龙之牙",
|
|
||||||
"black_glasses": "黑色眼镜",
|
|
||||||
"fairy_feather": "妖精之羽",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "HP增强剂",
|
|
||||||
"protein": "攻击增强剂",
|
|
||||||
"iron": "防御增强剂",
|
|
||||||
"calcium": "特攻增强剂",
|
|
||||||
"zinc": "特防增强剂",
|
|
||||||
"carbos": "速度增强剂",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
"NONE": "无",
|
|
||||||
|
|
||||||
"LINKING_CORD": "联系绳",
|
|
||||||
"SUN_STONE": "日之石",
|
|
||||||
"MOON_STONE": "月之石",
|
|
||||||
"LEAF_STONE": "叶之石",
|
|
||||||
"FIRE_STONE": "火之石",
|
|
||||||
"WATER_STONE": "水之石",
|
|
||||||
"THUNDER_STONE": "雷之石",
|
|
||||||
"ICE_STONE": "冰之石",
|
|
||||||
"DUSK_STONE": "暗之石",
|
|
||||||
"DAWN_STONE": "觉醒之石",
|
|
||||||
"SHINY_STONE": "光之石",
|
|
||||||
"CRACKED_POT": "破裂的茶壶",
|
|
||||||
"SWEET_APPLE": "甜甜苹果",
|
|
||||||
"TART_APPLE": "酸酸苹果",
|
|
||||||
"STRAWBERRY_SWEET": "草莓糖饰",
|
|
||||||
"UNREMARKABLE_TEACUP": "凡作茶碗",
|
|
||||||
"UPGRADE": "Upgrade",
|
|
||||||
"DUBIOUS_DISC": "Dubious Disc",
|
|
||||||
"DRAGON_SCALE": "Dragon Scale",
|
|
||||||
"PRISM_SCALE": "Prism Scale",
|
|
||||||
"RAZOR_CLAW": "Razor Claw",
|
|
||||||
"RAZOR_FANG": "Razor Fang",
|
|
||||||
"REAPER_CLOTH": "Reaper Cloth",
|
|
||||||
"ELECTIRIZER": "Electirizer",
|
|
||||||
"MAGMARIZER": "Magmarizer",
|
|
||||||
"PROTECTOR": "Protector",
|
|
||||||
"SACHET": "Sachet",
|
|
||||||
"WHIPPED_DREAM": "Whipped Dream",
|
|
||||||
"LEADERS_CREST": "Leader's Crest",
|
|
||||||
|
|
||||||
"CHIPPED_POT": "缺损的茶壶",
|
|
||||||
"BLACK_AUGURITE": "黑奇石",
|
|
||||||
"GALARICA_CUFF": "伽勒豆蔻手环",
|
|
||||||
"GALARICA_WREATH": "伽勒豆蔻花圈",
|
|
||||||
"PEAT_BLOCK": "泥炭块",
|
|
||||||
"AUSPICIOUS_ARMOR": "庆祝之铠",
|
|
||||||
"MALICIOUS_ARMOR": "咒术之铠",
|
|
||||||
"MASTERPIECE_TEACUP": "杰作茶碗",
|
|
||||||
"METAL_ALLOY": "复合金属",
|
|
||||||
"SCROLL_OF_DARKNESS": "恶之挂轴",
|
|
||||||
"SCROLL_OF_WATERS": "水之挂轴",
|
|
||||||
"SYRUPY_APPLE": "蜜汁苹果",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
"NONE": "无",
|
|
||||||
|
|
||||||
"ABOMASITE": "暴雪王进化石",
|
|
||||||
"ABSOLITE": "阿勃梭鲁进化石",
|
|
||||||
"AERODACTYLITE": "化石翼龙进化石",
|
|
||||||
"AGGRONITE": "波士可多拉进化石",
|
|
||||||
"ALAKAZITE": "胡地进化石",
|
|
||||||
"ALTARIANITE": "七夕青鸟进化石",
|
|
||||||
"AMPHAROSITE": "电龙进化石",
|
|
||||||
"AUDINITE": "差不多娃娃进化石",
|
|
||||||
"BANETTITE": "诅咒娃娃进化石",
|
|
||||||
"BEEDRILLITE": "大针蜂进化石",
|
|
||||||
"BLASTOISINITE": "水箭龟进化石",
|
|
||||||
"BLAZIKENITE": "火焰鸡进化石",
|
|
||||||
"CAMERUPTITE": "喷火驼进化石",
|
|
||||||
"CHARIZARDITE_X": "喷火龙进化石X",
|
|
||||||
"CHARIZARDITE_Y": "喷火龙进化石Y",
|
|
||||||
"DIANCITE": "蒂安希进化石",
|
|
||||||
"GALLADITE": "艾路雷朵进化石",
|
|
||||||
"GARCHOMPITE": "烈咬陆鲨进化石",
|
|
||||||
"GARDEVOIRITE": "沙奈朵进化石",
|
|
||||||
"GENGARITE": "耿鬼进化石",
|
|
||||||
"GLALITITE": "冰鬼护进化石",
|
|
||||||
"GYARADOSITE": "暴鲤龙进化石",
|
|
||||||
"HERACRONITE": "赫拉克罗斯进化石",
|
|
||||||
"HOUNDOOMINITE": "黑鲁加进化石",
|
|
||||||
"KANGASKHANITE": "袋兽进化石",
|
|
||||||
"LATIASITE": "拉帝亚斯进化石",
|
|
||||||
"LATIOSITE": "拉帝欧斯进化石",
|
|
||||||
"LOPUNNITE": "长耳兔进化石",
|
|
||||||
"LUCARIONITE": "路卡利欧进化石",
|
|
||||||
"MANECTITE": "雷电兽进化石",
|
|
||||||
"MAWILITE": "大嘴娃进化石",
|
|
||||||
"MEDICHAMITE": "恰雷姆进化石",
|
|
||||||
"METAGROSSITE": "巨金怪进化石",
|
|
||||||
"MEWTWONITE_X": "超梦进化石X",
|
|
||||||
"MEWTWONITE_Y": "超梦进化石Y",
|
|
||||||
"PIDGEOTITE": "大比鸟进化石",
|
|
||||||
"PINSIRITE": "凯罗斯进化石",
|
|
||||||
"RAYQUAZITE": "烈空坐进化石",
|
|
||||||
"SABLENITE": "勾魂眼进化石",
|
|
||||||
"SALAMENCITE": "暴飞龙进化石",
|
|
||||||
"SCEPTILITE": "蜥蜴王进化石",
|
|
||||||
"SCIZORITE": "巨钳螳螂进化石",
|
|
||||||
"SHARPEDONITE": "巨牙鲨进化石",
|
|
||||||
"SLOWBRONITE": "呆壳兽进化石",
|
|
||||||
"STEELIXITE": "大钢蛇进化石",
|
|
||||||
"SWAMPERTITE": "巨沼怪进化石",
|
|
||||||
"TYRANITARITE": "班基拉斯进化石",
|
|
||||||
"VENUSAURITE": "妙蛙花进化石",
|
|
||||||
|
|
||||||
"BLUE_ORB": "靛蓝色宝珠",
|
|
||||||
"RED_ORB": "朱红色宝珠",
|
|
||||||
"SHARP_METEORITE": "锐利陨石",
|
|
||||||
"HARD_METEORITE": "坚硬陨石",
|
|
||||||
"SMOOTH_METEORITE": "光滑陨石",
|
|
||||||
"ADAMANT_CRYSTAL": "大金刚宝玉",
|
|
||||||
"LUSTROUS_GLOBE": "大白宝玉",
|
|
||||||
"GRISEOUS_CORE": "大白金宝玉",
|
|
||||||
"REVEAL_GLASS": "现形镜",
|
|
||||||
"GRACIDEA": "葛拉西蒂亚花",
|
|
||||||
"MAX_MUSHROOMS": "极巨菇菇",
|
|
||||||
"DARK_STONE": "黑暗石",
|
|
||||||
"LIGHT_STONE": "光明石",
|
|
||||||
"PRISON_BOTTLE": "惩戒之壶",
|
|
||||||
"N_LUNARIZER": "奈克洛露奈合体器",
|
|
||||||
"N_SOLARIZER": "奈克洛索尔合体器",
|
|
||||||
"RUSTED_SWORD": "腐朽的剑",
|
|
||||||
"RUSTED_SHIELD": "腐朽的盾",
|
|
||||||
"ICY_REINS_OF_UNITY": "牵绊缰绳(冰)",
|
|
||||||
"SHADOW_REINS_OF_UNITY": "牵绊缰绳(幽灵)",
|
|
||||||
"WELLSPRING_MASK": "水井面具",
|
|
||||||
"HEARTHFLAME_MASK": "火灶面具",
|
|
||||||
"CORNERSTONE_MASK": "础石面具",
|
|
||||||
"SHOCK_DRIVE": "闪电卡带",
|
|
||||||
"BURN_DRIVE": "火焰卡带",
|
|
||||||
"CHILL_DRIVE": "冰冻卡带",
|
|
||||||
"DOUSE_DRIVE": "水流卡带",
|
|
||||||
"ULTRANECROZIUM_Z": "究极奈克洛Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "拳头石板",
|
|
||||||
"SKY_PLATE": "蓝天石板",
|
|
||||||
"TOXIC_PLATE": "剧毒石板",
|
|
||||||
"EARTH_PLATE": "大地石板",
|
|
||||||
"STONE_PLATE": "岩石石板",
|
|
||||||
"INSECT_PLATE": "玉虫石板",
|
|
||||||
"SPOOKY_PLATE": "妖怪石板",
|
|
||||||
"IRON_PLATE": "钢铁石板",
|
|
||||||
"FLAME_PLATE": "火球石板",
|
|
||||||
"SPLASH_PLATE": "水滴石板",
|
|
||||||
"MEADOW_PLATE": "碧绿石板",
|
|
||||||
"ZAP_PLATE": "雷电石板",
|
|
||||||
"MIND_PLATE": "神奇石板",
|
|
||||||
"ICICLE_PLATE": "冰柱石板",
|
|
||||||
"DRACO_PLATE": "龙之石板",
|
|
||||||
"DREAD_PLATE": "恶颜石板",
|
|
||||||
"PIXIE_PLATE": "妖精石板",
|
|
||||||
"BLANK_PLATE": "净空石板",
|
|
||||||
"LEGEND_PLATE": "传说石板",
|
|
||||||
"FIGHTING_MEMORY": "战斗存储碟",
|
|
||||||
"FLYING_MEMORY": "飞翔存储碟",
|
|
||||||
"POISON_MEMORY": "毒存储碟",
|
|
||||||
"GROUND_MEMORY": "大地存储碟",
|
|
||||||
"ROCK_MEMORY": "岩石存储碟",
|
|
||||||
"BUG_MEMORY": "虫子存储碟",
|
|
||||||
"GHOST_MEMORY": "幽灵存储碟",
|
|
||||||
"STEEL_MEMORY": "钢铁存储碟",
|
|
||||||
"FIRE_MEMORY": "火焰存储碟",
|
|
||||||
"WATER_MEMORY": "清水存储碟",
|
|
||||||
"GRASS_MEMORY": "青草存储碟",
|
|
||||||
"ELECTRIC_MEMORY": "电子存储碟",
|
|
||||||
"PSYCHIC_MEMORY": "精神存储碟",
|
|
||||||
"ICE_MEMORY": "冰雪存储碟",
|
|
||||||
"DRAGON_MEMORY": "龙存储碟",
|
|
||||||
"DARK_MEMORY": "黑暗存储碟",
|
|
||||||
"FAIRY_MEMORY": "妖精存储碟",
|
|
||||||
"BLANK_MEMORY": "空白存储碟",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "上场",
|
|
||||||
"SUMMARY": "概要",
|
|
||||||
"CANCEL": "取消",
|
|
||||||
"RELEASE": "放生",
|
|
||||||
"APPLY": "应用",
|
|
||||||
"TEACH": "教授",
|
|
||||||
"SPLICE": "融合",
|
|
||||||
"UNSPLICE": "分离",
|
|
||||||
"ACTIVATE": "激活",
|
|
||||||
"DEACTIVATE": "解除",
|
|
||||||
"TRANSFER": "交换",
|
|
||||||
"ALL": "全部道具",
|
|
||||||
"PASS_BATON": "接棒",
|
|
||||||
"UNPAUSE_EVOLUTION": "解除进化暂停",
|
|
||||||
"REVIVE": "复活",
|
|
||||||
"RENAME": "起名",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "选择一只宝可梦。",
|
|
||||||
"doWhatWithThisPokemon": "要对宝可梦做什么?",
|
|
||||||
"noEnergy": "{{pokemonName}}没有力气战斗了!",
|
|
||||||
"hasEnergy": "{{pokemonName}}仍然精神十足!",
|
|
||||||
"cantBeUsed": "{{pokemonName}}无法在此挑战中使用!",
|
|
||||||
"tooManyItems": "{{pokemonName}}拥有\n太多这个道具了!",
|
|
||||||
"anyEffect": "即便使用也无效果哦。",
|
|
||||||
"unpausedEvolutions": "{{pokemonName}}的进化停止了。",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "真的要把{{fusionName}}\n从{{pokemonName}}身上分离吗? {{fusionName}}会就此消失。",
|
|
||||||
"wasReverted": "{{fusionName}}恢复成了{{pokemonName}}。",
|
|
||||||
"releaseConfirmation": "你真要放生{{pokemonName}}吗?",
|
|
||||||
"releaseInBattle": "你无法放生正在战斗中的宝可梦!",
|
|
||||||
"selectAMove": "选择一个招式。",
|
|
||||||
"changeQuantity": "选择一件道具来交换。\n使用 ← 和 → 来指定数量。",
|
|
||||||
"selectAnotherPokemonToSplice": "选择另一只宝可梦来融合。",
|
|
||||||
"cancel": "取消",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "能学会!",
|
|
||||||
"notAble": "无法学习",
|
|
||||||
"learned": "已习得",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "再见,{{pokemonName}}!",
|
|
||||||
"byebye": "拜拜,{{pokemonName}}!",
|
|
||||||
"farewell": "再会了,{{pokemonName}}!",
|
|
||||||
"soLong": "告辞了,{{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "就此分别吧,{{pokemonName}}!",
|
|
||||||
"illMissYou": "我会想你的,{{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "我不会忘记你的,{{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "下次再见了,{{pokemonName}}!",
|
|
||||||
"sayonara": "撒由那拉,{{pokemonName}}!",
|
|
||||||
"smellYaLater": "拜拜了您嘞,{{pokemonName}}!",
|
|
||||||
} as const;
|
|
@ -1,123 +0,0 @@
|
|||||||
import common from "./common.json";
|
|
||||||
import settings from "./settings.json";
|
|
||||||
import ability from "./ability.json";
|
|
||||||
import abilityTriggers from "./ability-trigger.json";
|
|
||||||
import arenaFlyout from "./arena-flyout.json";
|
|
||||||
import arenaTag from "./arena-tag.json";
|
|
||||||
import achvMale from "./achv-male.json";
|
|
||||||
import achvFemale from "./achv-female.json";
|
|
||||||
import battle from "./battle.json";
|
|
||||||
import battleScene from "./battle-scene.json";
|
|
||||||
import battleInfo from "./battle-info.json";
|
|
||||||
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
|
||||||
import battlerTags from "./battler-tags.json";
|
|
||||||
import berry from "./berry.json";
|
|
||||||
import bgmName from "./bgm-name.json";
|
|
||||||
import biome from "./biome.json";
|
|
||||||
import challenges from "./challenges.json";
|
|
||||||
import commandUiHandler from "./command-ui-handler.json";
|
|
||||||
import dialogueMale from "./dialogue-male.json";
|
|
||||||
import dialogueFemale from "./dialogue-female.json";
|
|
||||||
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
|
||||||
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
|
||||||
import dialogueMiscMale from "./dialogue-misc-male.json";
|
|
||||||
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
|
||||||
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
|
||||||
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
|
||||||
import egg from "./egg.json";
|
|
||||||
import fightUiHandler from "./fight-ui-handler.json";
|
|
||||||
import filterBar from "./filter-bar.json";
|
|
||||||
import gameMode from "./game-mode.json";
|
|
||||||
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
|
||||||
import growth from "./growth.json";
|
|
||||||
import menu from "./menu.json";
|
|
||||||
import menuUiHandler from "./menu-ui-handler.json";
|
|
||||||
import modifier from "./modifier.json";
|
|
||||||
import modifierType from "./modifier-type.json";
|
|
||||||
import move from "./move.json";
|
|
||||||
import nature from "./nature.json";
|
|
||||||
import partyUiHandler from "./party-ui-handler.json";
|
|
||||||
import pokeball from "./pokeball.json";
|
|
||||||
import pokemon from "./pokemon.json";
|
|
||||||
import pokemonForm from "./pokemon-form.json";
|
|
||||||
import battlePokemonForm from "./pokemon-form-battle.json";
|
|
||||||
import pokemonInfo from "./pokemon-info.json";
|
|
||||||
import pokemonInfoContainer from "./pokemon-info-container.json";
|
|
||||||
import pokemonSummary from "./pokemon-summary.json";
|
|
||||||
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
|
||||||
import splashMessages from "./splash-messages.json";
|
|
||||||
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
|
||||||
import statusEffect from "./status-effect.json";
|
|
||||||
import trainerTitles from "./trainer-titles.json";
|
|
||||||
import trainerClasses from "./trainer-classes.json";
|
|
||||||
import trainerNames from "./trainer-names.json";
|
|
||||||
import tutorial from "./tutorial.json";
|
|
||||||
import voucher from "./voucher.json";
|
|
||||||
import weather from "./weather.json";
|
|
||||||
import terrain from "./terrain.json";
|
|
||||||
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
|
||||||
import moveTriggers from "./move-trigger.json";
|
|
||||||
import runHistory from "./run-history.json";
|
|
||||||
|
|
||||||
export const zhTwConfig = {
|
|
||||||
ability,
|
|
||||||
abilityTriggers,
|
|
||||||
arenaFlyout,
|
|
||||||
arenaTag,
|
|
||||||
battle,
|
|
||||||
battleScene,
|
|
||||||
battleInfo,
|
|
||||||
battleMessageUiHandler,
|
|
||||||
battlePokemonForm,
|
|
||||||
battlerTags,
|
|
||||||
berry,
|
|
||||||
bgmName,
|
|
||||||
biome,
|
|
||||||
challenges,
|
|
||||||
commandUiHandler,
|
|
||||||
common,
|
|
||||||
PGMachv: achvMale,
|
|
||||||
PGFachv: achvFemale,
|
|
||||||
PGMdialogue: dialogueMale,
|
|
||||||
PGFdialogue: dialogueFemale,
|
|
||||||
PGMbattleSpecDialogue: dialogueEndbossMale,
|
|
||||||
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
|
||||||
PGMmiscDialogue: dialogueMiscMale,
|
|
||||||
PGFmiscDialogue: dialogueMiscFemale,
|
|
||||||
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
|
||||||
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
|
||||||
egg,
|
|
||||||
fightUiHandler,
|
|
||||||
filterBar,
|
|
||||||
gameMode,
|
|
||||||
gameStatsUiHandler,
|
|
||||||
growth,
|
|
||||||
menu,
|
|
||||||
menuUiHandler,
|
|
||||||
modifier,
|
|
||||||
modifierType,
|
|
||||||
move,
|
|
||||||
nature,
|
|
||||||
pokeball,
|
|
||||||
pokemon,
|
|
||||||
pokemonForm,
|
|
||||||
pokemonInfo,
|
|
||||||
pokemonInfoContainer,
|
|
||||||
pokemonSummary,
|
|
||||||
saveSlotSelectUiHandler,
|
|
||||||
settings,
|
|
||||||
splashMessages,
|
|
||||||
starterSelectUiHandler,
|
|
||||||
statusEffect,
|
|
||||||
terrain,
|
|
||||||
titles: trainerTitles,
|
|
||||||
trainerClasses,
|
|
||||||
trainerNames,
|
|
||||||
tutorial,
|
|
||||||
voucher,
|
|
||||||
weather,
|
|
||||||
partyUiHandler,
|
|
||||||
modifierSelectUiHandler,
|
|
||||||
moveTriggers,
|
|
||||||
runHistory,
|
|
||||||
};
|
|
@ -1,533 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
AddPokeballModifierType: {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description:
|
|
||||||
"獲得 {{pokeballName}} x{{modifierCount}} (已有:{{pokeballAmount}}) \n捕捉倍率:{{catchRate}}。",
|
|
||||||
},
|
|
||||||
AddVoucherModifierType: {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
|
||||||
description: "獲得 {{voucherTypeName}} x{{modifierCount}}。",
|
|
||||||
},
|
|
||||||
PokemonHeldItemModifierType: {
|
|
||||||
extra: {
|
|
||||||
inoperable: "{{pokemonName}} 無法攜帶\n這個物品!",
|
|
||||||
tooMany: "{{pokemonName}} 已有太多\n這個物品!",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
PokemonHpRestoreModifierType: {
|
|
||||||
description:
|
|
||||||
"爲一隻寶可夢恢復 {{restorePoints}} HP 或 {{restorePercent}}% HP,取最大值。",
|
|
||||||
extra: {
|
|
||||||
fully: "爲一隻寶可夢恢復全部HP。",
|
|
||||||
fullyWithStatus: "爲一隻寶可夢恢復全部HP並消除所有負面\n狀態。",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
PokemonReviveModifierType: {
|
|
||||||
description: "復活一隻寶可夢並恢復 {{restorePercent}}% HP。",
|
|
||||||
},
|
|
||||||
PokemonStatusHealModifierType: {
|
|
||||||
description: "爲一隻寶可夢消除所有負面狀態。",
|
|
||||||
},
|
|
||||||
PokemonPpRestoreModifierType: {
|
|
||||||
description: "爲一隻寶可夢的一個招式恢復 {{restorePoints}} PP。",
|
|
||||||
extra: { fully: "完全恢復一隻寶可夢一個招式的PP。" },
|
|
||||||
},
|
|
||||||
PokemonAllMovePpRestoreModifierType: {
|
|
||||||
description: "爲一隻寶可夢的所有招式恢復 {{restorePoints}} PP。",
|
|
||||||
extra: { fully: "爲一隻寶可夢的所有招式恢復所有PP。" },
|
|
||||||
},
|
|
||||||
PokemonPpUpModifierType: {
|
|
||||||
description:
|
|
||||||
"永久提升一個招式的PP,每5點最大PP增加{{upPoints}} (最多3點)。",
|
|
||||||
},
|
|
||||||
PokemonNatureChangeModifierType: {
|
|
||||||
name: "{{natureName}}薄荷",
|
|
||||||
description:
|
|
||||||
"將一隻寶可夢的性格改爲{{natureName}}併爲該寶可\n夢永久解鎖該性格。",
|
|
||||||
},
|
|
||||||
DoubleBattleChanceBoosterModifierType: {
|
|
||||||
description: "接下來的{{battleCount}}場戰鬥是雙打的概率翻倍。",
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterModifierType: {
|
|
||||||
description:
|
|
||||||
"爲所有成員寶可夢提升一級{{tempBattleStatName}},持續5場戰鬥。",
|
|
||||||
},
|
|
||||||
AttackTypeBoosterModifierType: {
|
|
||||||
description: "一隻寶可夢的{{moveType}}系招式威力提升20%。",
|
|
||||||
},
|
|
||||||
PokemonLevelIncrementModifierType: {
|
|
||||||
description: "Increases a Pokémon's level by {{levels}}.",
|
|
||||||
},
|
|
||||||
AllPokemonLevelIncrementModifierType: {
|
|
||||||
description: "Increases all party members' level by {{levels}}.",
|
|
||||||
},
|
|
||||||
PokemonBaseStatBoosterModifierType: {
|
|
||||||
description:
|
|
||||||
"增加持有者的{{statName}}10%,個體值越高堆疊\n上限越高。",
|
|
||||||
},
|
|
||||||
AllPokemonFullHpRestoreModifierType: {
|
|
||||||
description: "所有寶可夢完全恢復HP。",
|
|
||||||
},
|
|
||||||
AllPokemonFullReviveModifierType: {
|
|
||||||
description: "復活所有瀕死寶可夢,完全恢復HP。",
|
|
||||||
},
|
|
||||||
MoneyRewardModifierType: {
|
|
||||||
description: "獲得{{moneyMultiplier}}金錢 (₽{{moneyAmount}})。",
|
|
||||||
extra: { small: "少量", moderate: "中等", large: "大量" },
|
|
||||||
},
|
|
||||||
ExpBoosterModifierType: {
|
|
||||||
description: "經驗值獲取量增加{{boostPercent}}%。",
|
|
||||||
},
|
|
||||||
PokemonExpBoosterModifierType: {
|
|
||||||
description: "持有者經驗值獲取量增加{{boostPercent}}%。",
|
|
||||||
},
|
|
||||||
PokemonFriendshipBoosterModifierType: {
|
|
||||||
description: "每場戰鬥獲得的好感度提升50%。",
|
|
||||||
},
|
|
||||||
PokemonMoveAccuracyBoosterModifierType: {
|
|
||||||
description: "招式命中率增加{{accuracyAmount}} (最大100)。",
|
|
||||||
},
|
|
||||||
PokemonMultiHitModifierType: {
|
|
||||||
description:
|
|
||||||
"攻擊造成一次額外傷害,每次堆疊額外傷害\n分別衰減60/75/82.5%。",
|
|
||||||
},
|
|
||||||
TmModifierType: {
|
|
||||||
name: "招式學習器 {{moveId}} - {{moveName}}",
|
|
||||||
description: "教會一隻寶可夢{{moveName}}。",
|
|
||||||
},
|
|
||||||
TmModifierTypeWithInfo: {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "教會一隻寶可夢{{moveName}}\n(Hold C or Shift for more info)。",
|
|
||||||
},
|
|
||||||
EvolutionItemModifierType: { description: "使某些寶可夢進化。" },
|
|
||||||
FormChangeItemModifierType: { description: "使某些寶可夢更改形態。" },
|
|
||||||
FusePokemonModifierType: {
|
|
||||||
description:
|
|
||||||
"融合兩隻寶可夢 (改變特性, 平分基礎點數\n和屬性, 共享招式池)。",
|
|
||||||
},
|
|
||||||
TerastallizeModifierType: {
|
|
||||||
name: "{{teraType}}太晶碎塊",
|
|
||||||
description: "持有者獲得{{teraType}}太晶化10場戰鬥。",
|
|
||||||
},
|
|
||||||
ContactHeldItemTransferChanceModifierType: {
|
|
||||||
description: "攻擊時{{chancePercent}}%概率偷取對手物品。",
|
|
||||||
},
|
|
||||||
TurnHeldItemTransferModifierType: {
|
|
||||||
description: "持有者每回合從對手那裏獲得一個持有的物品。",
|
|
||||||
},
|
|
||||||
EnemyAttackStatusEffectChanceModifierType: {
|
|
||||||
description: "攻擊時{{chancePercent}}%概率造成{{statusEffect}}。",
|
|
||||||
},
|
|
||||||
EnemyEndureChanceModifierType: {
|
|
||||||
description: "增加{{chancePercent}}%遭受攻擊的概率。",
|
|
||||||
},
|
|
||||||
RARE_CANDY: { name: "神奇糖果" },
|
|
||||||
RARER_CANDY: { name: "超神奇糖果" },
|
|
||||||
MEGA_BRACELET: {
|
|
||||||
name: "超級手鐲",
|
|
||||||
description: "能讓攜帶着超級石戰鬥的寶可夢進行\n超級進化。",
|
|
||||||
},
|
|
||||||
DYNAMAX_BAND: {
|
|
||||||
name: "極巨腕帶",
|
|
||||||
description: "能讓攜帶着極巨菇菇戰鬥的寶可夢進行\n極巨化。",
|
|
||||||
},
|
|
||||||
TERA_ORB: {
|
|
||||||
name: "太晶珠",
|
|
||||||
description: "能讓攜帶着太晶碎塊戰鬥的寶可夢進行\n太晶化。",
|
|
||||||
},
|
|
||||||
MAP: {
|
|
||||||
name: "地圖",
|
|
||||||
description: "允許你在切換寶可夢羣落時選擇目的地。",
|
|
||||||
},
|
|
||||||
POTION: { name: "傷藥" },
|
|
||||||
SUPER_POTION: { name: "好傷藥" },
|
|
||||||
HYPER_POTION: { name: "厲害傷藥" },
|
|
||||||
MAX_POTION: { name: "全滿藥" },
|
|
||||||
FULL_RESTORE: { name: "全復藥" },
|
|
||||||
REVIVE: { name: "活力碎片" },
|
|
||||||
MAX_REVIVE: { name: "活力塊" },
|
|
||||||
FULL_HEAL: { name: "萬靈藥" },
|
|
||||||
SACRED_ASH: { name: "聖灰" },
|
|
||||||
REVIVER_SEED: {
|
|
||||||
name: "復活種子",
|
|
||||||
description: "受到技能攻擊傷害瀕死時,\n恢復該瀕死寶可夢的HP至1/2。",
|
|
||||||
},
|
|
||||||
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: "PP單項小補劑" },
|
|
||||||
MAX_ETHER: { name: "PP單項全補劑" },
|
|
||||||
ELIXIR: { name: "PP多項小補劑" },
|
|
||||||
MAX_ELIXIR: { name: "PP多項全補劑" },
|
|
||||||
PP_UP: { name: "PP提升劑" },
|
|
||||||
PP_MAX: { name: "PP極限提升劑" },
|
|
||||||
LURE: { name: "引蟲香水" },
|
|
||||||
SUPER_LURE: { name: "白銀香水" },
|
|
||||||
MAX_LURE: { name: "黃金香水" },
|
|
||||||
MEMORY_MUSHROOM: {
|
|
||||||
name: "回憶蘑菇",
|
|
||||||
description: "回憶一個寶可夢已經遺忘的招式。",
|
|
||||||
},
|
|
||||||
EXP_SHARE: {
|
|
||||||
name: "學習裝置",
|
|
||||||
description: "未參加對戰的寶可夢獲得20%的經驗值。",
|
|
||||||
},
|
|
||||||
EXP_BALANCE: {
|
|
||||||
name: "均衡型學習裝置",
|
|
||||||
description: "隊伍中的低級寶可夢獲得更多經驗值。",
|
|
||||||
},
|
|
||||||
OVAL_CHARM: {
|
|
||||||
name: "圓形護符",
|
|
||||||
description:
|
|
||||||
"當多隻寶可夢參與戰鬥,分別獲得總經驗值\n10%的額外經驗值。",
|
|
||||||
},
|
|
||||||
EXP_CHARM: { name: "經驗護符" },
|
|
||||||
SUPER_EXP_CHARM: { name: "超級經驗護符" },
|
|
||||||
GOLDEN_EXP_CHARM: { name: "黃金經驗護符" },
|
|
||||||
LUCKY_EGG: { name: "幸運蛋" },
|
|
||||||
GOLDEN_EGG: { name: "金蛋" },
|
|
||||||
SOOTHE_BELL: { name: "安撫之鈴" },
|
|
||||||
SCOPE_LENS: {
|
|
||||||
name: "焦點鏡",
|
|
||||||
description: "能看見弱點的鏡片。攜帶它的寶可夢的招式 會變得容易擊中要害。"
|
|
||||||
},
|
|
||||||
LEEK: {
|
|
||||||
name: "大蔥",
|
|
||||||
description: "非常長且堅硬的莖。讓大蔥鴨攜帶後,招式會 變得容易擊中要害。"
|
|
||||||
},
|
|
||||||
EVIOLITE: {
|
|
||||||
name: "進化奇石",
|
|
||||||
description: "進化的神奇石塊。攜帶後,還能進化的寶可夢的 防禦和特防就會提高。"
|
|
||||||
},
|
|
||||||
SOUL_DEW: {
|
|
||||||
name: "心之水滴",
|
|
||||||
description: "增加寶可夢性格影響10% (加算)。",
|
|
||||||
},
|
|
||||||
NUGGET: { name: "金珠" },
|
|
||||||
BIG_NUGGET: { name: "巨大金珠" },
|
|
||||||
RELIC_GOLD: { name: "古代金幣" },
|
|
||||||
AMULET_COIN: { name: "護符金幣", description: "金錢獎勵增加20%。" },
|
|
||||||
GOLDEN_PUNCH: {
|
|
||||||
name: "黃金拳頭",
|
|
||||||
description: "將50%造成的傷害轉換爲金錢。",
|
|
||||||
},
|
|
||||||
COIN_CASE: {
|
|
||||||
name: "代幣盒",
|
|
||||||
description: "每十場戰鬥, 獲得自己金錢10%的利息。",
|
|
||||||
},
|
|
||||||
LOCK_CAPSULE: {
|
|
||||||
name: "上鎖的容器",
|
|
||||||
description: "允許在刷新物品時鎖定物品稀有度。",
|
|
||||||
},
|
|
||||||
GRIP_CLAW: { name: "緊纏鉤爪" },
|
|
||||||
WIDE_LENS: { name: "廣角鏡" },
|
|
||||||
MULTI_LENS: { name: "多重鏡" },
|
|
||||||
HEALING_CHARM: {
|
|
||||||
name: "治癒護符",
|
|
||||||
description: "HP恢復量增加10% (不含復活)。",
|
|
||||||
},
|
|
||||||
CANDY_JAR: { name: "糖果罐", description: "神奇糖果提供的升級提升1級。" },
|
|
||||||
BERRY_POUCH: {
|
|
||||||
name: "樹果袋",
|
|
||||||
description: "使用樹果時有30%的幾率不會消耗樹果。",
|
|
||||||
},
|
|
||||||
FOCUS_BAND: {
|
|
||||||
name: "氣勢頭帶",
|
|
||||||
description:
|
|
||||||
"攜帶該道具的寶可夢有10%幾率在受到\n攻擊而將陷入瀕死狀態時,保留1點HP不陷入瀕死狀態。",
|
|
||||||
},
|
|
||||||
QUICK_CLAW: {
|
|
||||||
name: "先制之爪",
|
|
||||||
description: "有10%的幾率無視速度優先使出招式\n(先制技能優先)。",
|
|
||||||
},
|
|
||||||
KINGS_ROCK: {
|
|
||||||
name: "王者之證",
|
|
||||||
description:
|
|
||||||
"攜帶該道具的寶可夢使用任意原本不會造成\n畏縮狀態的攻擊招式並造成傷害時,有\n10%幾率使目標陷入畏縮狀態。",
|
|
||||||
},
|
|
||||||
LEFTOVERS: {
|
|
||||||
name: "喫剩的東西",
|
|
||||||
description: "攜帶該道具的寶可夢在每個回合結束時恢復\n最大HP的1/16。",
|
|
||||||
},
|
|
||||||
SHELL_BELL: {
|
|
||||||
name: "貝殼之鈴",
|
|
||||||
description:
|
|
||||||
"攜帶該道具的寶可夢在攻擊對方成功造成傷\n害時,攜帶者的HP會恢復其所造成傷害\n的1/8。",
|
|
||||||
},
|
|
||||||
TOXIC_ORB: {
|
|
||||||
name: "劇毒寶珠",
|
|
||||||
description:
|
|
||||||
"觸碰後會放出毒的神奇寶珠。\n攜帶後,在戰鬥時會變成劇毒狀態。"
|
|
||||||
},
|
|
||||||
FLAME_ORB: {
|
|
||||||
name: "火焰寶珠",
|
|
||||||
description:
|
|
||||||
"觸碰後會放出熱量的神奇寶珠。\n攜帶後,在戰鬥時會變成灼傷狀態。"
|
|
||||||
},
|
|
||||||
BATON: {
|
|
||||||
name: "接力棒",
|
|
||||||
description: "允許在切換寶可夢時保留能力變化, 對陷阱\n同樣生效。",
|
|
||||||
},
|
|
||||||
SHINY_CHARM: {
|
|
||||||
name: "閃耀護符",
|
|
||||||
description: "顯著增加野生寶可夢的閃光概率。",
|
|
||||||
},
|
|
||||||
ABILITY_CHARM: {
|
|
||||||
name: "特性護符",
|
|
||||||
description: "顯著增加野生寶可夢有隱藏特性的概率。",
|
|
||||||
},
|
|
||||||
IV_SCANNER: {
|
|
||||||
name: "個體值探測器",
|
|
||||||
description:
|
|
||||||
"允許掃描野生寶可夢的個體值。 每個次顯示\n2個個體值. 最好的個體值優先顯示。",
|
|
||||||
},
|
|
||||||
DNA_SPLICERS: { name: "基因之楔" },
|
|
||||||
MINI_BLACK_HOLE: { name: "迷你黑洞" },
|
|
||||||
GOLDEN_POKEBALL: {
|
|
||||||
name: "黃金精靈球",
|
|
||||||
description: "在每場戰鬥結束後增加一個額外物品選項。",
|
|
||||||
},
|
|
||||||
ENEMY_DAMAGE_BOOSTER: {
|
|
||||||
name: "傷害硬幣",
|
|
||||||
description: "增加5%造成傷害。",
|
|
||||||
},
|
|
||||||
ENEMY_DAMAGE_REDUCTION: {
|
|
||||||
name: "防禦硬幣",
|
|
||||||
description: "減少2.5%承受傷害。",
|
|
||||||
},
|
|
||||||
ENEMY_HEAL: { name: "恢復硬幣", description: "每回合恢復2%最大HP。" },
|
|
||||||
ENEMY_ATTACK_POISON_CHANCE: { name: "劇毒硬幣" },
|
|
||||||
ENEMY_ATTACK_PARALYZE_CHANCE: { name: "麻痹硬幣" },
|
|
||||||
ENEMY_ATTACK_BURN_CHANCE: { name: "灼燒硬幣" },
|
|
||||||
ENEMY_STATUS_EFFECT_HEAL_CHANCE: {
|
|
||||||
name: "萬靈藥硬幣",
|
|
||||||
description: "增加2.5%每回合治癒異常狀態的概率。",
|
|
||||||
},
|
|
||||||
ENEMY_ENDURE_CHANCE: { name: "忍受硬幣" },
|
|
||||||
ENEMY_FUSED_CHANCE: {
|
|
||||||
name: "融合硬幣",
|
|
||||||
description: "增加1%野生融合寶可夢出現概率。",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "電氣球", description: "讓皮卡丘攜帶後,攻擊和特攻就會 提高的神奇之球。" },
|
|
||||||
"THICK_CLUB": { name: "粗骨頭", description: "某種堅硬的骨頭。讓卡拉卡拉或嘎啦嘎啦攜帶後,攻擊就會提高。" },
|
|
||||||
"METAL_POWDER": { name: "金屬粉", description: "讓百變怪攜帶後,防禦就會提高的神奇粉末。非常細緻堅硬。" },
|
|
||||||
"QUICK_POWDER": { name: "速度粉", description: "讓百變怪攜帶後,速度就會提高的神奇粉末。非常細緻堅硬。" }
|
|
||||||
},
|
|
||||||
TempBattleStatBoosterItem: {
|
|
||||||
x_attack: "力量強化",
|
|
||||||
x_defense: "防禦強化",
|
|
||||||
x_sp_atk: "特攻強化",
|
|
||||||
x_sp_def: "特防強化",
|
|
||||||
x_speed: "速度強化",
|
|
||||||
x_accuracy: "命中強化",
|
|
||||||
dire_hit: "要害攻擊",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "攻擊",
|
|
||||||
"DEF": "防禦",
|
|
||||||
"SPATK": "特攻",
|
|
||||||
"SPDEF": "特防",
|
|
||||||
"SPD": "速度",
|
|
||||||
"ACC": "命中",
|
|
||||||
"CRIT": "會心",
|
|
||||||
"EVA": "閃避",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
AttackTypeBoosterItem: {
|
|
||||||
silk_scarf: "絲綢圍巾",
|
|
||||||
black_belt: "黑帶",
|
|
||||||
sharp_beak: "銳利鳥嘴",
|
|
||||||
poison_barb: "毒針",
|
|
||||||
soft_sand: "柔軟沙子",
|
|
||||||
hard_stone: "硬石頭",
|
|
||||||
silver_powder: "銀粉",
|
|
||||||
spell_tag: "詛咒之符",
|
|
||||||
metal_coat: "金屬膜",
|
|
||||||
charcoal: "木炭",
|
|
||||||
mystic_water: "神祕水滴",
|
|
||||||
miracle_seed: "奇蹟種子",
|
|
||||||
magnet: "磁鐵",
|
|
||||||
twisted_spoon: "彎曲的湯匙",
|
|
||||||
never_melt_ice: "不融冰",
|
|
||||||
dragon_fang: "龍之牙",
|
|
||||||
black_glasses: "黑色眼鏡",
|
|
||||||
fairy_feather: "妖精之羽",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
hp_up: "HP增強劑",
|
|
||||||
protein: "攻擊增強劑",
|
|
||||||
iron: "防禦增強劑",
|
|
||||||
calcium: "特攻增強劑",
|
|
||||||
zinc: "特防增強劑",
|
|
||||||
carbos: "速度增強劑",
|
|
||||||
},
|
|
||||||
EvolutionItem: {
|
|
||||||
NONE: "無",
|
|
||||||
LINKING_CORD: "聯繫繩",
|
|
||||||
SUN_STONE: "日之石",
|
|
||||||
MOON_STONE: "月之石",
|
|
||||||
LEAF_STONE: "葉之石",
|
|
||||||
FIRE_STONE: "火之石",
|
|
||||||
WATER_STONE: "水之石",
|
|
||||||
THUNDER_STONE: "雷之石",
|
|
||||||
ICE_STONE: "冰之石",
|
|
||||||
DUSK_STONE: "暗之石",
|
|
||||||
DAWN_STONE: "覺醒之石",
|
|
||||||
SHINY_STONE: "光之石",
|
|
||||||
CRACKED_POT: "破裂的茶壺",
|
|
||||||
SWEET_APPLE: "甜甜蘋果",
|
|
||||||
TART_APPLE: "酸酸蘋果",
|
|
||||||
STRAWBERRY_SWEET: "草莓糖飾",
|
|
||||||
UNREMARKABLE_TEACUP: "凡作茶碗",
|
|
||||||
UPGRADE: "Upgrade",
|
|
||||||
DUBIOUS_DISC: "Dubious Disc",
|
|
||||||
DRAGON_SCALE: "Dragon Scale",
|
|
||||||
PRISM_SCALE: "Prism Scale",
|
|
||||||
RAZOR_CLAW: "Razor Claw",
|
|
||||||
RAZOR_FANG: "Razor Fang",
|
|
||||||
REAPER_CLOTH: "Reaper Cloth",
|
|
||||||
ELECTIRIZER: "Electirizer",
|
|
||||||
MAGMARIZER: "Magmarizer",
|
|
||||||
PROTECTOR: "Protector",
|
|
||||||
SACHET: "Sachet",
|
|
||||||
WHIPPED_DREAM: "Whipped Dream",
|
|
||||||
LEADERS_CREST: "Leader's Crest",
|
|
||||||
CHIPPED_POT: "缺損的茶壺",
|
|
||||||
BLACK_AUGURITE: "黑奇石",
|
|
||||||
GALARICA_CUFF: "伽勒豆蔻手環",
|
|
||||||
GALARICA_WREATH: "伽勒豆蔻花圈",
|
|
||||||
PEAT_BLOCK: "泥炭塊",
|
|
||||||
AUSPICIOUS_ARMOR: "慶祝之鎧",
|
|
||||||
MALICIOUS_ARMOR: "咒術之鎧",
|
|
||||||
MASTERPIECE_TEACUP: "傑作茶碗",
|
|
||||||
METAL_ALLOY: "複合金屬",
|
|
||||||
SCROLL_OF_DARKNESS: "惡之掛軸",
|
|
||||||
SCROLL_OF_WATERS: "水之掛軸",
|
|
||||||
SYRUPY_APPLE: "蜜汁蘋果",
|
|
||||||
},
|
|
||||||
FormChangeItem: {
|
|
||||||
NONE: "無",
|
|
||||||
ABOMASITE: "暴雪王進化石",
|
|
||||||
ABSOLITE: "阿勃梭魯進化石",
|
|
||||||
AERODACTYLITE: "化石翼龍進化石",
|
|
||||||
AGGRONITE: "波士可多拉進化石",
|
|
||||||
ALAKAZITE: "胡地進化石",
|
|
||||||
ALTARIANITE: "七夕青鳥進化石",
|
|
||||||
AMPHAROSITE: "電龍進化石",
|
|
||||||
AUDINITE: "差不多娃娃進化石",
|
|
||||||
BANETTITE: "詛咒娃娃進化石",
|
|
||||||
BEEDRILLITE: "大針蜂進化石",
|
|
||||||
BLASTOISINITE: "水箭龜進化石",
|
|
||||||
BLAZIKENITE: "火焰雞進化石",
|
|
||||||
CAMERUPTITE: "噴火駝進化石",
|
|
||||||
CHARIZARDITE_X: "噴火龍進化石X",
|
|
||||||
CHARIZARDITE_Y: "噴火龍進化石Y",
|
|
||||||
DIANCITE: "蒂安希進化石",
|
|
||||||
GALLADITE: "艾路雷朵進化石",
|
|
||||||
GARCHOMPITE: "烈咬陸鯊進化石",
|
|
||||||
GARDEVOIRITE: "沙奈朵進化石",
|
|
||||||
GENGARITE: "耿鬼進化石",
|
|
||||||
GLALITITE: "冰鬼護進化石",
|
|
||||||
GYARADOSITE: "暴鯉龍進化石",
|
|
||||||
HERACRONITE: "赫拉克羅斯進化石",
|
|
||||||
HOUNDOOMINITE: "黑魯加進化石",
|
|
||||||
KANGASKHANITE: "袋獸進化石",
|
|
||||||
LATIASITE: "拉帝亞斯進化石",
|
|
||||||
LATIOSITE: "拉帝歐斯進化石",
|
|
||||||
LOPUNNITE: "長耳兔進化石",
|
|
||||||
LUCARIONITE: "路卡利歐進化石",
|
|
||||||
MANECTITE: "雷電獸進化石",
|
|
||||||
MAWILITE: "大嘴娃進化石",
|
|
||||||
MEDICHAMITE: "恰雷姆進化石",
|
|
||||||
METAGROSSITE: "巨金怪進化石",
|
|
||||||
MEWTWONITE_X: "超夢進化石X",
|
|
||||||
MEWTWONITE_Y: "超夢進化石Y",
|
|
||||||
PIDGEOTITE: "大比鳥進化石",
|
|
||||||
PINSIRITE: "凱羅斯進化石",
|
|
||||||
RAYQUAZITE: "烈空坐進化石",
|
|
||||||
SABLENITE: "勾魂眼進化石",
|
|
||||||
SALAMENCITE: "暴飛龍進化石",
|
|
||||||
SCEPTILITE: "蜥蜴王進化石",
|
|
||||||
SCIZORITE: "巨鉗螳螂進化石",
|
|
||||||
SHARPEDONITE: "巨牙鯊進化石",
|
|
||||||
SLOWBRONITE: "呆殼獸進化石",
|
|
||||||
STEELIXITE: "大鋼蛇進化石",
|
|
||||||
SWAMPERTITE: "巨沼怪進化石",
|
|
||||||
TYRANITARITE: "班基拉斯進化石",
|
|
||||||
VENUSAURITE: "妙蛙花進化石",
|
|
||||||
BLUE_ORB: "靛藍色寶珠",
|
|
||||||
RED_ORB: "硃紅色寶珠",
|
|
||||||
SHARP_METEORITE: "銳利隕石",
|
|
||||||
HARD_METEORITE: "堅硬隕石",
|
|
||||||
SMOOTH_METEORITE: "光滑隕石",
|
|
||||||
ADAMANT_CRYSTAL: "大金剛寶玉",
|
|
||||||
LUSTROUS_GLOBE: "大白寶玉",
|
|
||||||
GRISEOUS_CORE: "大白金寶玉",
|
|
||||||
REVEAL_GLASS: "現形鏡",
|
|
||||||
GRACIDEA: "葛拉西蒂亞花",
|
|
||||||
MAX_MUSHROOMS: "極巨菇菇",
|
|
||||||
DARK_STONE: "黑暗石",
|
|
||||||
LIGHT_STONE: "光明石",
|
|
||||||
PRISON_BOTTLE: "懲戒之壺",
|
|
||||||
N_LUNARIZER: "奈克洛露奈合體器",
|
|
||||||
N_SOLARIZER: "奈克洛索爾合體器",
|
|
||||||
RUSTED_SWORD: "腐朽的劍",
|
|
||||||
RUSTED_SHIELD: "腐朽的盾",
|
|
||||||
ICY_REINS_OF_UNITY: "牽絆繮繩(冰)",
|
|
||||||
SHADOW_REINS_OF_UNITY: "牽絆繮繩(幽靈)",
|
|
||||||
WELLSPRING_MASK: "水井面具",
|
|
||||||
HEARTHFLAME_MASK: "火竈面具",
|
|
||||||
CORNERSTONE_MASK: "礎石面具",
|
|
||||||
SHOCK_DRIVE: "閃電卡帶",
|
|
||||||
BURN_DRIVE: "火焰卡帶",
|
|
||||||
CHILL_DRIVE: "冰凍卡帶",
|
|
||||||
DOUSE_DRIVE: "水流卡帶",
|
|
||||||
ULTRANECROZIUM_Z: "究極奈克洛Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "拳頭石板",
|
|
||||||
"SKY_PLATE": "藍天石板",
|
|
||||||
"TOXIC_PLATE": "劇毒石板",
|
|
||||||
"EARTH_PLATE": "大地石板",
|
|
||||||
"STONE_PLATE": "岩石石板",
|
|
||||||
"INSECT_PLATE": "玉蟲石板",
|
|
||||||
"SPOOKY_PLATE": "妖怪石板",
|
|
||||||
"IRON_PLATE": "鋼鐵石板",
|
|
||||||
"FLAME_PLATE": "火球石板",
|
|
||||||
"SPLASH_PLATE": "水滴石板",
|
|
||||||
"MEADOW_PLATE": "碧綠石板",
|
|
||||||
"ZAP_PLATE": "雷電石板",
|
|
||||||
"MIND_PLATE": "神奇石板",
|
|
||||||
"ICICLE_PLATE": "冰柱石板",
|
|
||||||
"DRACO_PLATE": "龍之石板",
|
|
||||||
"DREAD_PLATE": "惡顏石板",
|
|
||||||
"PIXIE_PLATE": "妖精石板",
|
|
||||||
"BLANK_PLATE": "淨空石板",
|
|
||||||
"LEGEND_PLATE": "傳說石板",
|
|
||||||
"FIGHTING_MEMORY": "戰鬥記憶碟",
|
|
||||||
"FLYING_MEMORY": "飛翔記憶碟",
|
|
||||||
"POISON_MEMORY": "毒記憶碟",
|
|
||||||
"GROUND_MEMORY": "大地記憶碟",
|
|
||||||
"ROCK_MEMORY": "岩石記憶碟",
|
|
||||||
"BUG_MEMORY": "蟲子記憶碟",
|
|
||||||
"GHOST_MEMORY": "幽靈記憶碟",
|
|
||||||
"STEEL_MEMORY": "鋼鐵記憶碟",
|
|
||||||
"FIRE_MEMORY": "火焰記憶碟",
|
|
||||||
"WATER_MEMORY": "清水記憶碟",
|
|
||||||
"GRASS_MEMORY": "青草記憶碟",
|
|
||||||
"ELECTRIC_MEMORY": "電子記憶碟",
|
|
||||||
"PSYCHIC_MEMORY": "精神記憶碟",
|
|
||||||
"ICE_MEMORY": "冰雪記憶碟",
|
|
||||||
"DRAGON_MEMORY": "龍記憶碟",
|
|
||||||
"DARK_MEMORY": "黑暗記憶碟",
|
|
||||||
"FAIRY_MEMORY": "妖精記憶碟",
|
|
||||||
"BLANK_MEMORY": "空白記憶碟",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,56 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "上場",
|
|
||||||
"SUMMARY": "概要",
|
|
||||||
"CANCEL": "取消",
|
|
||||||
"RELEASE": "放生",
|
|
||||||
"APPLY": "應用",
|
|
||||||
"TEACH": "教授",
|
|
||||||
"SPLICE": "Splice",
|
|
||||||
"UNSPLICE": "Unsplice",
|
|
||||||
"ACTIVATE": "Activate",
|
|
||||||
"DEACTIVATE": "Deactivate",
|
|
||||||
"TRANSFER": "Transfer",
|
|
||||||
"ALL": "All",
|
|
||||||
"PASS_BATON": "Pass Baton",
|
|
||||||
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
|
||||||
"REVIVE": "Revive",
|
|
||||||
"RENAME": "Rename",
|
|
||||||
"PAUSE_EVOLUTION": "Pause Evolution",
|
|
||||||
|
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
|
||||||
"doWhatWithThisPokemon": "Do what with this Pokémon?",
|
|
||||||
"noEnergy": "{{pokemonName}} has no energy\nleft to battle!",
|
|
||||||
"hasEnergy": "{{pokemonName}} still has energy\nto battle!",
|
|
||||||
"cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!",
|
|
||||||
"tooManyItems": "{{pokemonName}} has too many\nof this item!",
|
|
||||||
"anyEffect": "It won't have any effect.",
|
|
||||||
"unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.",
|
|
||||||
"pausedEvolutions": "Evolutions have been paused for {{pokemonName}}.",
|
|
||||||
"unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.",
|
|
||||||
"wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.",
|
|
||||||
"releaseConfirmation": "Do you really want to release {{pokemonName}}?",
|
|
||||||
"releaseInBattle": "You can't release a Pokémon that's in battle!",
|
|
||||||
"selectAMove": "Select a move.",
|
|
||||||
"changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.",
|
|
||||||
"selectAnotherPokemonToSplice": "Select another Pokémon to splice.",
|
|
||||||
"cancel": "Cancel",
|
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Able",
|
|
||||||
"notAble": "Not able",
|
|
||||||
"learned": "Learned",
|
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Goodbye, {{pokemonName}}!",
|
|
||||||
"byebye": "Byebye, {{pokemonName}}!",
|
|
||||||
"farewell": "Farewell, {{pokemonName}}!",
|
|
||||||
"soLong": "So long, {{pokemonName}}!",
|
|
||||||
"thisIsWhereWePart": "This is where we part, {{pokemonName}}!",
|
|
||||||
"illMissYou": "I'll miss you, {{pokemonName}}!",
|
|
||||||
"illNeverForgetYou": "I'll never forget you, {{pokemonName}}!",
|
|
||||||
"untilWeMeetAgain": "Until we meet again, {{pokemonName}}!",
|
|
||||||
"sayonara": "Sayonara, {{pokemonName}}!",
|
|
||||||
"smellYaLater": "Smell ya later, {{pokemonName}}!",
|
|
||||||
} as const;
|
|
Loading…
Reference in New Issue
Block a user