mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-06 00:12:16 +02:00
Compare commits
19 Commits
a44c1587d4
...
0a871fb0d0
Author | SHA1 | Date | |
---|---|---|---|
|
0a871fb0d0 | ||
|
6880c7afe0 | ||
|
04a345a6cc | ||
|
7935f28089 | ||
|
b55fb8db37 | ||
|
d2a8c4a150 | ||
|
a2299ee055 | ||
|
8c21bdc0a1 | ||
|
09b820161f | ||
|
3cc9c93643 | ||
|
03c4b1b821 | ||
|
bfa12fd48d | ||
|
10437142b6 | ||
|
edf3a6aa36 | ||
|
4362d49e6b | ||
|
0c660f599d | ||
|
48c745deee | ||
|
b0fd32b1a4 | ||
|
96af567cd4 |
@ -15,7 +15,6 @@ import { TerrainType } from "./terrain";
|
|||||||
import { WeatherType } from "./weather";
|
import { WeatherType } from "./weather";
|
||||||
import { BattleStat } from "./battle-stat";
|
import { BattleStat } from "./battle-stat";
|
||||||
import { allAbilities } from "./ability";
|
import { allAbilities } from "./ability";
|
||||||
import { Species } from "./enums/species";
|
|
||||||
|
|
||||||
export enum BattlerTagLapseType {
|
export enum BattlerTagLapseType {
|
||||||
FAINT,
|
FAINT,
|
||||||
@ -120,9 +119,8 @@ export class TrappedTag extends BattlerTag {
|
|||||||
canAdd(pokemon: Pokemon): boolean {
|
canAdd(pokemon: Pokemon): boolean {
|
||||||
const isGhost = pokemon.isOfType(Type.GHOST);
|
const isGhost = pokemon.isOfType(Type.GHOST);
|
||||||
const isTrapped = pokemon.getTag(BattlerTagType.TRAPPED);
|
const isTrapped = pokemon.getTag(BattlerTagType.TRAPPED);
|
||||||
const isAllowedGhostType = pokemon.species.speciesId === Species.PHANTUMP || pokemon.species.speciesId === Species.TREVENANT;
|
|
||||||
|
|
||||||
return !isTrapped && (!isGhost || isAllowedGhostType);
|
return !isTrapped && !isGhost;
|
||||||
}
|
}
|
||||||
|
|
||||||
onAdd(pokemon: Pokemon): void {
|
onAdd(pokemon: Pokemon): void {
|
||||||
@ -503,11 +501,26 @@ export class HelpingHandTag extends BattlerTag {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Applies the Ingrain tag to a pokemon
|
||||||
|
* @extends TrappedTag
|
||||||
|
*/
|
||||||
export class IngrainTag extends TrappedTag {
|
export class IngrainTag extends TrappedTag {
|
||||||
constructor(sourceId: integer) {
|
constructor(sourceId: integer) {
|
||||||
super(BattlerTagType.INGRAIN, BattlerTagLapseType.TURN_END, 1, Moves.INGRAIN, sourceId);
|
super(BattlerTagType.INGRAIN, BattlerTagLapseType.TURN_END, 1, Moves.INGRAIN, sourceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the Ingrain tag can be added to the pokemon
|
||||||
|
* @param pokemon {@linkcode Pokemon} The pokemon to check if the tag can be added to
|
||||||
|
* @returns boolean True if the tag can be added, false otherwise
|
||||||
|
*/
|
||||||
|
canAdd(pokemon: Pokemon): boolean {
|
||||||
|
const isTrapped = pokemon.getTag(BattlerTagType.TRAPPED);
|
||||||
|
|
||||||
|
return !isTrapped;
|
||||||
|
}
|
||||||
|
|
||||||
lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean {
|
lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean {
|
||||||
const ret = lapseType !== BattlerTagLapseType.CUSTOM || super.lapse(pokemon, lapseType);
|
const ret = lapseType !== BattlerTagLapseType.CUSTOM || super.lapse(pokemon, lapseType);
|
||||||
|
|
||||||
|
@ -909,7 +909,8 @@ export const trainerTypeDialogue = {
|
|||||||
},
|
},
|
||||||
[TrainerType.MORTY]: {
|
[TrainerType.MORTY]: {
|
||||||
encounter: [
|
encounter: [
|
||||||
`With a little more, I could see a future in which I meet the legendary Pokémon. You're going to help me reach that level!`,
|
`With a little more, I could see a future in which I meet the legendary Pokémon.
|
||||||
|
$You're going to help me reach that level!`,
|
||||||
`It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer.
|
`It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer.
|
||||||
$I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot.
|
$I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot.
|
||||||
$I see a shadow of the person who will make the Pokémon appear.
|
$I see a shadow of the person who will make the Pokémon appear.
|
||||||
@ -924,7 +925,8 @@ export const trainerTypeDialogue = {
|
|||||||
`I see… Your journey has taken you to far-away places and you have witnessed much more than I.
|
`I see… Your journey has taken you to far-away places and you have witnessed much more than I.
|
||||||
$I envy you for that…`,
|
$I envy you for that…`,
|
||||||
`How is this possible…`,
|
`How is this possible…`,
|
||||||
`I don't think our potentials are so different. But you seem to have something more than that… So be it.`,
|
`I don't think our potentials are so different.
|
||||||
|
$But you seem to have something more than that… So be it.`,
|
||||||
`Guess I need more training.`,
|
`Guess I need more training.`,
|
||||||
`That's a shame.`
|
`That's a shame.`
|
||||||
],
|
],
|
||||||
|
@ -13,22 +13,22 @@ export function getStatName(stat: Stat, shorten: boolean = false) {
|
|||||||
let ret: string;
|
let ret: string;
|
||||||
switch (stat) {
|
switch (stat) {
|
||||||
case Stat.HP:
|
case Stat.HP:
|
||||||
ret = !shorten ? i18next.t('pokemonStat:HP') : i18next.t('pokemonStat:HPshortened');
|
ret = !shorten ? i18next.t('pokemonInfo:Stat.HP') : i18next.t('pokemonInfo:Stat.HPshortened');
|
||||||
break;
|
break;
|
||||||
case Stat.ATK:
|
case Stat.ATK:
|
||||||
ret = !shorten ? i18next.t('pokemonStat:ATK') : i18next.t('pokemonStat:ATKshortened');
|
ret = !shorten ? i18next.t('pokemonInfo:Stat.ATK') : i18next.t('pokemonInfo:Stat.ATKshortened');
|
||||||
break;
|
break;
|
||||||
case Stat.DEF:
|
case Stat.DEF:
|
||||||
ret = !shorten ? i18next.t('pokemonStat:DEF') : i18next.t('pokemonStat:DEFshortened');
|
ret = !shorten ? i18next.t('pokemonInfo:Stat.DEF') : i18next.t('pokemonInfo:Stat.DEFshortened');
|
||||||
break;
|
break;
|
||||||
case Stat.SPATK:
|
case Stat.SPATK:
|
||||||
ret = !shorten ? i18next.t('pokemonStat:SPATK') : i18next.t('pokemonStat:SPATKshortened');
|
ret = !shorten ? i18next.t('pokemonInfo:Stat.SPATK') : i18next.t('pokemonInfo:Stat.SPATKshortened');
|
||||||
break;
|
break;
|
||||||
case Stat.SPDEF:
|
case Stat.SPDEF:
|
||||||
ret = !shorten ? i18next.t('pokemonStat:SPDEF') : i18next.t('pokemonStat:SPDEFshortened');
|
ret = !shorten ? i18next.t('pokemonInfo:Stat.SPDEF') : i18next.t('pokemonInfo:Stat.SPDEFshortened');
|
||||||
break;
|
break;
|
||||||
case Stat.SPD:
|
case Stat.SPD:
|
||||||
ret = !shorten ? i18next.t('pokemonStat:SPD') : i18next.t('pokemonStat:SPDshortened');
|
ret = !shorten ? i18next.t('pokemonInfo:Stat.SPD') : i18next.t('pokemonInfo:Stat.SPDshortened');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Biome } from "./enums/biome";
|
import { Biome } from "./enums/biome";
|
||||||
import { getPokemonMessage } from "../messages";
|
import { getPokemonMessage, getPokemonPrefix } from "../messages";
|
||||||
import Pokemon from "../field/pokemon";
|
import Pokemon from "../field/pokemon";
|
||||||
import { Type } from "./type";
|
import { Type } from "./type";
|
||||||
import Move, { AttackMove } from "./move";
|
import Move, { AttackMove } from "./move";
|
||||||
@ -172,9 +172,9 @@ export function getWeatherLapseMessage(weatherType: WeatherType): string {
|
|||||||
export function getWeatherDamageMessage(weatherType: WeatherType, pokemon: Pokemon): string {
|
export function getWeatherDamageMessage(weatherType: WeatherType, pokemon: Pokemon): string {
|
||||||
switch (weatherType) {
|
switch (weatherType) {
|
||||||
case WeatherType.SANDSTORM:
|
case WeatherType.SANDSTORM:
|
||||||
return getPokemonMessage(pokemon, ' is buffeted\nby the sandstorm!');
|
return i18next.t('weather:sandstormDamageMessage', {pokemonPrefix: getPokemonPrefix(pokemon), pokemonName: pokemon.name});
|
||||||
case WeatherType.HAIL:
|
case WeatherType.HAIL:
|
||||||
return getPokemonMessage(pokemon, ' is pelted\nby the hail!');
|
return i18next.t('weather:hailDamageMessage', {pokemonPrefix: getPokemonPrefix(pokemon), pokemonName: pokemon.name});
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
@ -370,6 +370,34 @@ export default class Trainer extends Phaser.GameObjects.Container {
|
|||||||
this.getTintSprites().map((tintSprite, i) => tintSprite.setTexture(this.getKey(!!i)).setFrame(0));
|
this.getTintSprites().map((tintSprite, i) => tintSprite.setTexture(this.getKey(!!i)).setFrame(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attempts to animate a given set of {@linkcode Phaser.GameObjects.Sprite}
|
||||||
|
* @see {@linkcode Phaser.GameObjects.Sprite.play}
|
||||||
|
* @param sprite {@linkcode Phaser.GameObjects.Sprite} to animate
|
||||||
|
* @param tintSprite {@linkcode Phaser.GameObjects.Sprite} placed on top of the sprite to add a color tint
|
||||||
|
* @param animConfig {@linkcode Phaser.Types.Animations.PlayAnimationConfig} to pass to {@linkcode Phaser.GameObjects.Sprite.play}
|
||||||
|
* @returns true if the sprite was able to be animated
|
||||||
|
*/
|
||||||
|
tryPlaySprite(sprite: Phaser.GameObjects.Sprite, tintSprite: Phaser.GameObjects.Sprite, animConfig: Phaser.Types.Animations.PlayAnimationConfig): boolean {
|
||||||
|
// Show an error in the console if there isn't a texture loaded
|
||||||
|
if (sprite.texture.key === '__MISSING') {
|
||||||
|
console.error(`No texture found for '${animConfig.key}'!`);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// Don't try to play an animation when there isn't one
|
||||||
|
if (sprite.texture.frameTotal <= 1) {
|
||||||
|
console.warn(`No animation found for '${animConfig.key}'. Is this intentional?`);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
sprite.play(animConfig);
|
||||||
|
tintSprite.play(animConfig);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
playAnim(): void {
|
playAnim(): void {
|
||||||
const trainerAnimConfig = {
|
const trainerAnimConfig = {
|
||||||
key: this.getKey(),
|
key: this.getKey(),
|
||||||
@ -379,14 +407,9 @@ export default class Trainer extends Phaser.GameObjects.Container {
|
|||||||
const sprites = this.getSprites();
|
const sprites = this.getSprites();
|
||||||
const tintSprites = this.getTintSprites();
|
const tintSprites = this.getTintSprites();
|
||||||
|
|
||||||
// Don't try to play an animation when there isn't one
|
this.tryPlaySprite(sprites[0], tintSprites[0], trainerAnimConfig);
|
||||||
if (sprites.length > 1) {
|
|
||||||
sprites[0].play(trainerAnimConfig);
|
|
||||||
tintSprites[0].play(trainerAnimConfig);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
console.warn(`No animation found for '${this.getKey()}'. Is this intentional?`);
|
|
||||||
|
|
||||||
|
// Queue an animation for the second trainer if this is a double battle against two separate trainers
|
||||||
if (this.variant === TrainerVariant.DOUBLE && !this.config.doubleOnly) {
|
if (this.variant === TrainerVariant.DOUBLE && !this.config.doubleOnly) {
|
||||||
const partnerTrainerAnimConfig = {
|
const partnerTrainerAnimConfig = {
|
||||||
key: this.getKey(true),
|
key: this.getKey(true),
|
||||||
@ -394,13 +417,7 @@ export default class Trainer extends Phaser.GameObjects.Container {
|
|||||||
startFrame: 0
|
startFrame: 0
|
||||||
};
|
};
|
||||||
|
|
||||||
// Don't try to play an animation when there isn't one
|
this.tryPlaySprite(sprites[1], tintSprites[1], partnerTrainerAnimConfig);
|
||||||
if (sprites.length > 1) {
|
|
||||||
sprites[1].play(partnerTrainerAnimConfig);
|
|
||||||
tintSprites[1].play(partnerTrainerAnimConfig);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
console.warn(`No animation found for '${this.getKey()}'. Is this intentional?`);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
10
src/locales/de/battle-message-ui-handler.ts
Normal file
10
src/locales/de/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Sensationell",
|
||||||
|
"ivFantastic": "Fantastisch",
|
||||||
|
"ivVeryGood": "Sehr Gut",
|
||||||
|
"ivPrettyGood": "Gut",
|
||||||
|
"ivDecent": "Nicht Übel",
|
||||||
|
"ivNoGood": "Schlecht",
|
||||||
|
} as const;
|
@ -2,47 +2,47 @@ import { BerryTranslationEntries } from "#app/plugins/i18n";
|
|||||||
|
|
||||||
export const berry: BerryTranslationEntries = {
|
export const berry: BerryTranslationEntries = {
|
||||||
"SITRUS": {
|
"SITRUS": {
|
||||||
name: "Sitrus Berry",
|
name: "Tsitrubeere",
|
||||||
effect: "Restores 25% HP if HP is below 50%",
|
effect: "Stellt 25% der KP wieder her, wenn die KP unter 50% sind"
|
||||||
},
|
},
|
||||||
"LUM": {
|
"LUM": {
|
||||||
name: "Lum Berry",
|
name: "Prunusbeere",
|
||||||
effect: "Cures any non-volatile status condition and confusion",
|
effect: "Heilt jede nichtflüchtige Statusveränderung und Verwirrung"
|
||||||
},
|
},
|
||||||
"ENIGMA": {
|
"ENIGMA": {
|
||||||
name: "Enigma Berry",
|
name: "Enigmabeere",
|
||||||
effect: "Restores 25% HP if hit by a super effective move",
|
effect: "Stellt 25% der KP wieder her, wenn der Träger von einer sehr effektiven Attacke getroffen wird",
|
||||||
},
|
},
|
||||||
"LIECHI": {
|
"LIECHI": {
|
||||||
name: "Liechi Berry",
|
name: "Lydzibeere",
|
||||||
effect: "Raises Attack if HP is below 25%",
|
effect: "Steigert den Angriff, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"GANLON": {
|
"GANLON": {
|
||||||
name: "Ganlon Berry",
|
name: "Linganbeere",
|
||||||
effect: "Raises Defense if HP is below 25%",
|
effect: "Steigert die Verteidigung, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"PETAYA": {
|
"PETAYA": {
|
||||||
name: "Petaya Berry",
|
name: "Tahaybeere",
|
||||||
effect: "Raises Sp. Atk if HP is below 25%",
|
effect: "Steigert den Spezial-Angriff, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"APICOT": {
|
"APICOT": {
|
||||||
name: "Apicot Berry",
|
name: "Apikobeere",
|
||||||
effect: "Raises Sp. Def if HP is below 25%",
|
effect: "Steigert die Spezial-Verteidigung, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"SALAC": {
|
"SALAC": {
|
||||||
name: "Salac Berry",
|
name: "Salkabeere",
|
||||||
effect: "Raises Speed if HP is below 25%",
|
effect: "Steigert die Initiative, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"LANSAT": {
|
"LANSAT": {
|
||||||
name: "Lansat Berry",
|
name: "Lansatbeere",
|
||||||
effect: "Raises critical hit ratio if HP is below 25%",
|
effect: "Erhöht die Volltrefferchance, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"STARF": {
|
"STARF": {
|
||||||
name: "Starf Berry",
|
name: "Krambobeere",
|
||||||
effect: "Sharply raises a random stat if HP is below 25%",
|
effect: "Erhöht eine Statuswert stark, wenn die KP unter 25% sind"
|
||||||
},
|
},
|
||||||
"LEPPA": {
|
"LEPPA": {
|
||||||
name: "Leppa Berry",
|
name: "Jonagobeere",
|
||||||
effect: "Restores 10 PP to a move if its PP reaches 0",
|
effect: "Stellt 10 AP für eine Attacke wieder her, wenn deren AP auf 0 fallen"
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
@ -12,15 +12,15 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
import { splashMessages } from "./splash-messages";
|
import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
export const deConfig = {
|
export const deConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
abilityTriggers: abilityTriggers,
|
abilityTriggers: abilityTriggers,
|
||||||
@ -36,7 +36,7 @@ export const deConfig = {
|
|||||||
nature: nature,
|
nature: nature,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
splashMessages: splashMessages,
|
splashMessages: splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
titles: titles,
|
titles: titles,
|
||||||
@ -44,5 +44,6 @@ export const deConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
|
battleMessageUiHandler: battleMessageUiHandler,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
@ -385,26 +385,4 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
"CHILL_DRIVE": "Gefriermodul",
|
"CHILL_DRIVE": "Gefriermodul",
|
||||||
"DOUSE_DRIVE": "Aquamodul",
|
"DOUSE_DRIVE": "Aquamodul",
|
||||||
},
|
},
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Unbekannt",
|
|
||||||
"NORMAL": "Normal",
|
|
||||||
"FIGHTING": "Kampf",
|
|
||||||
"FLYING": "Flug",
|
|
||||||
"POISON": "Gift",
|
|
||||||
"GROUND": "Boden",
|
|
||||||
"ROCK": "Gestein",
|
|
||||||
"BUG": "Käfer",
|
|
||||||
"GHOST": "Geist",
|
|
||||||
"STEEL": "Stahl",
|
|
||||||
"FIRE": "Feuer",
|
|
||||||
"WATER": "Wasser",
|
|
||||||
"GRASS": "Pflanze",
|
|
||||||
"ELECTRIC": "Elektro",
|
|
||||||
"PSYCHIC": "Psycho",
|
|
||||||
"ICE": "Eis",
|
|
||||||
"DRAGON": "Drache",
|
|
||||||
"DARK": "Unlicht",
|
|
||||||
"FAIRY": "Fee",
|
|
||||||
"STELLAR": "Stellar",
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
41
src/locales/de/pokemon-info.ts
Normal file
41
src/locales/de/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "Max. KP",
|
||||||
|
"HPshortened": "MaxKP",
|
||||||
|
"ATK": "Angriff",
|
||||||
|
"ATKshortened": "Ang",
|
||||||
|
"DEF": "Verteidigung",
|
||||||
|
"DEFshortened": "Vert",
|
||||||
|
"SPATK": "Sp. Ang",
|
||||||
|
"SPATKshortened": "SpAng",
|
||||||
|
"SPDEF": "Sp. Vert",
|
||||||
|
"SPDEFshortened": "SpVert",
|
||||||
|
"SPD": "Initiative",
|
||||||
|
"SPDshortened": "Init",
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Unbekannt",
|
||||||
|
"NORMAL": "Normal",
|
||||||
|
"FIGHTING": "Kampf",
|
||||||
|
"FLYING": "Flug",
|
||||||
|
"POISON": "Gift",
|
||||||
|
"GROUND": "Boden",
|
||||||
|
"ROCK": "Gestein",
|
||||||
|
"BUG": "Käfer",
|
||||||
|
"GHOST": "Geist",
|
||||||
|
"STEEL": "Stahl",
|
||||||
|
"FIRE": "Feuer",
|
||||||
|
"WATER": "Wasser",
|
||||||
|
"GRASS": "Pflanze",
|
||||||
|
"ELECTRIC": "Elektro",
|
||||||
|
"PSYCHIC": "Psycho",
|
||||||
|
"ICE": "Eis",
|
||||||
|
"DRAGON": "Drache",
|
||||||
|
"DARK": "Unlicht",
|
||||||
|
"FAIRY": "Fee",
|
||||||
|
"STELLAR": "Stellar",
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "Max. KP",
|
|
||||||
"HPshortened": "MaxKP",
|
|
||||||
"ATK": "Angriff",
|
|
||||||
"ATKshortened": "Ang",
|
|
||||||
"DEF": "Verteidigung",
|
|
||||||
"DEFshortened": "Vert",
|
|
||||||
"SPATK": "Sp. Ang",
|
|
||||||
"SPATKshortened": "SpAng",
|
|
||||||
"SPDEF": "Sp. Vert",
|
|
||||||
"SPDEFshortened": "SpVert",
|
|
||||||
"SPD": "Initiative",
|
|
||||||
"SPDshortened": "Init"
|
|
||||||
} as const;
|
|
@ -1,37 +1,37 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const splashMessages: SimpleTranslationEntries = {
|
export const splashMessages: SimpleTranslationEntries = {
|
||||||
"battlesWon": "Battles Won!",
|
"battlesWon": "Kämpfe gewonnen!",
|
||||||
"joinTheDiscord": "Join the Discord!",
|
"joinTheDiscord": "Tritt dem Discord bei!",
|
||||||
"infiniteLevels": "Infinite Levels!",
|
"infiniteLevels": "Unendliche Level!",
|
||||||
"everythingStacks": "Everything Stacks!",
|
"everythingStacks": "Alles stapelt sich!",
|
||||||
"optionalSaveScumming": "Optional Save Scumming!",
|
"optionalSaveScumming": "Optionales Save Scumming!",
|
||||||
"biomes": "35 Biomes!",
|
"biomes": "35 Biome!",
|
||||||
"openSource": "Open Source!",
|
"openSource": "Open Source!",
|
||||||
"playWithSpeed": "Play with 5x Speed!",
|
"playWithSpeed": "Spiele mit fünffacher Geschwindigkeit!",
|
||||||
"liveBugTesting": "Live Bug Testing!",
|
"liveBugTesting": "Live-Bug-Tests!",
|
||||||
"heavyInfluence": "Heavy RoR2 Influence!",
|
"heavyInfluence": "Starker RoR2-Einfluss!",
|
||||||
"pokemonRiskAndPokemonRain": "Pokémon Risk and Pokémon Rain!",
|
"pokemonRiskAndPokemonRain": "Pokémon Risk and Pokémon Rain!",
|
||||||
"nowWithMoreSalt": "Now with 33% More Salt!",
|
"nowWithMoreSalt": "Jetzt mit 33% mehr Salz!",
|
||||||
"infiniteFusionAtHome": "Infinite Fusion at Home!",
|
"infiniteFusionAtHome": "Wir haben Infinite Fusionen zu Hause!",
|
||||||
"brokenEggMoves": "Broken Egg Moves!",
|
"brokenEggMoves": "Übermächtige Ei-Attacken!",
|
||||||
"magnificent": "Magnificent!",
|
"magnificent": "Herrlich!",
|
||||||
"mubstitute": "Mubstitute!",
|
"mubstitute": "Melegator!",
|
||||||
"thatsCrazy": "That\'s Crazy!",
|
"thatsCrazy": "Das ist verrückt!",
|
||||||
"oranceJuice": "Orance Juice!",
|
"oranceJuice": "Orangensaft!",
|
||||||
"questionableBalancing": "Questionable Balancing!",
|
"questionableBalancing": "Fragwürdiges Balancing!",
|
||||||
"coolShaders": "Cool Shaders!",
|
"coolShaders": "Coole Shader!",
|
||||||
"aiFree": "AI-Free!",
|
"aiFree": "Ohne KI!",
|
||||||
"suddenDifficultySpikes": "Sudden Difficulty Spikes!",
|
"suddenDifficultySpikes": "Plötzliche Schwierigkeitsspitzen!",
|
||||||
"basedOnAnUnfinishedFlashGame": "Based on an Unfinished Flash Game!",
|
"basedOnAnUnfinishedFlashGame": "Basierend auf einem unfertigen Flash-Spiel!",
|
||||||
"moreAddictiveThanIntended": "More Addictive than Intended!",
|
"moreAddictiveThanIntended": "Süchtig machender als beabsichtigt!",
|
||||||
"mostlyConsistentSeeds": "Mostly Consistent Seeds!",
|
"mostlyConsistentSeeds": "Meistens konsistente Seeds!",
|
||||||
"achievementPointsDontDoAnything": "Achievement Points Don\'t Do Anything!",
|
"achievementPointsDontDoAnything": "Erungenschaftspunkte tun nichts!",
|
||||||
"youDoNotStartAtLevel": "You Do Not Start at Level 2000!",
|
"youDoNotStartAtLevel": "Du startest nicht auf Level 2000!",
|
||||||
"dontTalkAboutTheManaphyEggIncident": "Don\'t Talk About the Manaphy Egg Incident!",
|
"dontTalkAboutTheManaphyEggIncident": "Wir reden nicht über den Manaphy-Ei-Vorfall!",
|
||||||
"alsoTryPokengine": "Also Try Pokéngine!",
|
"alsoTryPokengine": "Versuche auch Pokéngine!",
|
||||||
"alsoTryEmeraldRogue": "Also Try Emerald Rogue!",
|
"alsoTryEmeraldRogue": "Versuche auch Emerald Rogue!",
|
||||||
"alsoTryRadicalRed": "Also Try Radical Red!",
|
"alsoTryRadicalRed": "Versuche auch Radical Red!",
|
||||||
"eeveeExpo": "Eevee Expo!",
|
"eeveeExpo": "Evoli-Expo!",
|
||||||
"ynoproject": "YNOproject!",
|
"ynoproject": "YNO-Projekt!",
|
||||||
} as const;
|
} as const;
|
@ -4,41 +4,41 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|||||||
* The weather namespace holds text displayed when weather is active during a battle
|
* The weather namespace holds text displayed when weather is active during a battle
|
||||||
*/
|
*/
|
||||||
export const weather: SimpleTranslationEntries = {
|
export const weather: SimpleTranslationEntries = {
|
||||||
"sunnyStartMessage": "Die Sonne hellt auf!",
|
"sunnyStartMessage": "Die Sonnenlicht wird stärker!",
|
||||||
"sunnyLapseMessage": "Die Sonne blendet.",
|
"sunnyLapseMessage": "Die Sonnenlicht ist stark.",
|
||||||
"sunnyClearMessage": "Die Sonne schwächt ab.",
|
"sunnyClearMessage": "Die Sonnenlicht verliert wieder an Intensität.",
|
||||||
|
|
||||||
"rainStartMessage": "Es fängt an zu regnen!",
|
"rainStartMessage": "Es fängt an zu regnen!",
|
||||||
"rainLapseMessage": "Es regnet weiterhin.",
|
"rainLapseMessage": "Es regnet weiter.",
|
||||||
"rainClearMessage": "Es hört auf zu regnen.",
|
"rainClearMessage": "Der Regen lässt nach.",
|
||||||
|
|
||||||
"sandstormStartMessage": "Ein Sandsturm braut sich zusammen!",
|
"sandstormStartMessage": "Ein Sandsturm kommt auf!",
|
||||||
"sandstormLapseMessage": "Der Sandsturm tobt.",
|
"sandstormLapseMessage": "Der Sandsturm tobt.",
|
||||||
"sandstormClearMessage": "Der Sandsturm lässt nach.",
|
"sandstormClearMessage": "Der Sandsturm legt sich.",
|
||||||
"sandstormDamageMessage": "{{pokemonPrefix}}{{pokemonName}} ist vom\nSandsturm beeinträchtigt!",
|
"sandstormDamageMessage": " Der Sandsturm fügt {{pokemonPrefix}}{{pokemonName}} Schaden zu!",
|
||||||
|
|
||||||
"hailStartMessage": "Es fängt an zu hageln!",
|
"hailStartMessage": "Es fängt an zu hageln!",
|
||||||
"hailLapseMessage": "Es hagelt weiterhin.",
|
"hailLapseMessage": "Der Hagelsturm tobt.",
|
||||||
"hailClearMessage": "Es hört auf zu hageln.",
|
"hailClearMessage": "Der Hagelsturm legt sich.",
|
||||||
"hailDamageMessage": "{{pokemonPrefix}}{{pokemonName}} ist vom\nHagel beeinträchtigt!",
|
"hailDamageMessage": "{{pokemonPrefix}}{{pokemonName}} wird von Hagelkörnern getroffen!",
|
||||||
|
|
||||||
"snowStartMessage": "Es fängt an zu schneien!",
|
"snowStartMessage": "Es fängt an zu schneien!",
|
||||||
"snowLapseMessage": "Es schneit weiterhin.",
|
"snowLapseMessage": "Der Schneesturm tobt.",
|
||||||
"snowClearMessage": "Es hört auf zu schneien.",
|
"snowClearMessage": "Der Schneesturm legt sich.",
|
||||||
|
|
||||||
"fogStartMessage": "Es fängt an zu nebeln!",
|
"fogStartMessage": "Am Boden breitet sich dichter Nebel aus!",
|
||||||
"fogLapseMessage": "Es nebelt weiterhin.",
|
"fogLapseMessage": "Der Nebel bleibt dicht.",
|
||||||
"fogClearMessage": "Es hört auf zu nebeln.",
|
"fogClearMessage": "Der Nebel lichtet sich.",
|
||||||
|
|
||||||
"heavyRainStartMessage": "Ein Starkregen beginnt!",
|
"heavyRainStartMessage": "Es fängt an, in Strömen zu regnen!",
|
||||||
"heavyRainLapseMessage": "Der Starkregen hält an.",
|
"heavyRainLapseMessage": "Der strömende Regen hält an.",
|
||||||
"heavyRainClearMessage": "Der Starkregen lässt nach.",
|
"heavyRainClearMessage": "Der strömende Regen lässt nach.",
|
||||||
|
|
||||||
"harshSunStartMessage": "Das Sonnenlicht wird wärmer!",
|
"harshSunStartMessage": "Das Sonnenlicht wird sehr viel stärker!",
|
||||||
"harshSunLapseMessage": "Das Sonnenlicht brennt.",
|
"harshSunLapseMessage": "Das Sonnenlicht ist sehr stark.",
|
||||||
"harshSunClearMessage": "Das Sonnenlicht schwächt ab.",
|
"harshSunClearMessage": "Das Sonnenlicht verliert an Intensität.",
|
||||||
|
|
||||||
"strongWindsStartMessage": "Ein starker Wind zieht auf!",
|
"strongWindsStartMessage": "Alle Flug-Pokémon werden von rätselhaften Luftströmungen geschützt!",
|
||||||
"strongWindsLapseMessage": "Der starke Wind tobt.",
|
"strongWindsLapseMessage": "Die rätselhafte Luftströmung hält an.",
|
||||||
"strongWindsClearMessage": "Der starke Wind legt sich."
|
"strongWindsClearMessage": "Die rätselhafte Luftströmung hat sich wieder geleget.",
|
||||||
}
|
}
|
||||||
|
10
src/locales/en/battle-message-ui-handler.ts
Normal file
10
src/locales/en/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Best",
|
||||||
|
"ivFantastic": "Fantastic",
|
||||||
|
"ivVeryGood": "Very Good",
|
||||||
|
"ivPrettyGood": "Pretty Good",
|
||||||
|
"ivDecent": "Decent",
|
||||||
|
"ivNoGood": "No Good",
|
||||||
|
} as const;
|
@ -12,15 +12,15 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
import { splashMessages } from "./splash-messages";
|
import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
export const enConfig = {
|
export const enConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
abilityTriggers: abilityTriggers,
|
abilityTriggers: abilityTriggers,
|
||||||
@ -36,7 +36,7 @@ export const enConfig = {
|
|||||||
nature: nature,
|
nature: nature,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
splashMessages: splashMessages,
|
splashMessages: splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
titles: titles,
|
titles: titles,
|
||||||
@ -44,5 +44,6 @@ export const enConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
|
battleMessageUiHandler: battleMessageUiHandler,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
@ -384,26 +384,4 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
"CHILL_DRIVE": "Chill Drive",
|
"CHILL_DRIVE": "Chill Drive",
|
||||||
"DOUSE_DRIVE": "Douse Drive",
|
"DOUSE_DRIVE": "Douse Drive",
|
||||||
},
|
},
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Unknown",
|
|
||||||
"NORMAL": "Normal",
|
|
||||||
"FIGHTING": "Fighting",
|
|
||||||
"FLYING": "Flying",
|
|
||||||
"POISON": "Poison",
|
|
||||||
"GROUND": "Ground",
|
|
||||||
"ROCK": "Rock",
|
|
||||||
"BUG": "Bug",
|
|
||||||
"GHOST": "Ghost",
|
|
||||||
"STEEL": "Steel",
|
|
||||||
"FIRE": "Fire",
|
|
||||||
"WATER": "Water",
|
|
||||||
"GRASS": "Grass",
|
|
||||||
"ELECTRIC": "Electric",
|
|
||||||
"PSYCHIC": "Psychic",
|
|
||||||
"ICE": "Ice",
|
|
||||||
"DRAGON": "Dragon",
|
|
||||||
"DARK": "Dark",
|
|
||||||
"FAIRY": "Fairy",
|
|
||||||
"STELLAR": "Stellar",
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
41
src/locales/en/pokemon-info.ts
Normal file
41
src/locales/en/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "Max. HP",
|
||||||
|
"HPshortened": "MaxHP",
|
||||||
|
"ATK": "Attack",
|
||||||
|
"ATKshortened": "Atk",
|
||||||
|
"DEF": "Defense",
|
||||||
|
"DEFshortened": "Def",
|
||||||
|
"SPATK": "Sp. Atk",
|
||||||
|
"SPATKshortened": "SpAtk",
|
||||||
|
"SPDEF": "Sp. Def",
|
||||||
|
"SPDEFshortened": "SpDef",
|
||||||
|
"SPD": "Speed",
|
||||||
|
"SPDshortened": "Spd"
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Unknown",
|
||||||
|
"NORMAL": "Normal",
|
||||||
|
"FIGHTING": "Fighting",
|
||||||
|
"FLYING": "Flying",
|
||||||
|
"POISON": "Poison",
|
||||||
|
"GROUND": "Ground",
|
||||||
|
"ROCK": "Rock",
|
||||||
|
"BUG": "Bug",
|
||||||
|
"GHOST": "Ghost",
|
||||||
|
"STEEL": "Steel",
|
||||||
|
"FIRE": "Fire",
|
||||||
|
"WATER": "Water",
|
||||||
|
"GRASS": "Grass",
|
||||||
|
"ELECTRIC": "Electric",
|
||||||
|
"PSYCHIC": "Psychic",
|
||||||
|
"ICE": "Ice",
|
||||||
|
"DRAGON": "Dragon",
|
||||||
|
"DARK": "Dark",
|
||||||
|
"FAIRY": "Fairy",
|
||||||
|
"STELLAR": "Stellar",
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "Max. HP",
|
|
||||||
"HPshortened": "MaxHP",
|
|
||||||
"ATK": "Attack",
|
|
||||||
"ATKshortened": "Atk",
|
|
||||||
"DEF": "Defense",
|
|
||||||
"DEFshortened": "Def",
|
|
||||||
"SPATK": "Sp. Atk",
|
|
||||||
"SPATKshortened": "SpAtk",
|
|
||||||
"SPDEF": "Sp. Def",
|
|
||||||
"SPDEFshortened": "SpDef",
|
|
||||||
"SPD": "Speed",
|
|
||||||
"SPDshortened": "Spd"
|
|
||||||
} as const;
|
|
10
src/locales/es/battle-message-ui-handler.ts
Normal file
10
src/locales/es/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Best",
|
||||||
|
"ivFantastic": "Fantastic",
|
||||||
|
"ivVeryGood": "Very Good",
|
||||||
|
"ivPrettyGood": "Pretty Good",
|
||||||
|
"ivDecent": "Decent",
|
||||||
|
"ivNoGood": "No Good",
|
||||||
|
} as const;
|
@ -12,15 +12,15 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
import { splashMessages } from "./splash-messages";
|
import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
export const esConfig = {
|
export const esConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
abilityTriggers: abilityTriggers,
|
abilityTriggers: abilityTriggers,
|
||||||
@ -36,7 +36,7 @@ export const esConfig = {
|
|||||||
nature: nature,
|
nature: nature,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
splashMessages: splashMessages,
|
splashMessages: splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
titles: titles,
|
titles: titles,
|
||||||
@ -44,5 +44,6 @@ export const esConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
|
battleMessageUiHandler: battleMessageUiHandler,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
@ -384,26 +384,4 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
"CHILL_DRIVE": "Chill Drive",
|
"CHILL_DRIVE": "Chill Drive",
|
||||||
"DOUSE_DRIVE": "Douse Drive",
|
"DOUSE_DRIVE": "Douse Drive",
|
||||||
},
|
},
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Unknown",
|
|
||||||
"NORMAL": "Normal",
|
|
||||||
"FIGHTING": "Fighting",
|
|
||||||
"FLYING": "Flying",
|
|
||||||
"POISON": "Poison",
|
|
||||||
"GROUND": "Ground",
|
|
||||||
"ROCK": "Rock",
|
|
||||||
"BUG": "Bug",
|
|
||||||
"GHOST": "Ghost",
|
|
||||||
"STEEL": "Steel",
|
|
||||||
"FIRE": "Fire",
|
|
||||||
"WATER": "Water",
|
|
||||||
"GRASS": "Grass",
|
|
||||||
"ELECTRIC": "Electric",
|
|
||||||
"PSYCHIC": "Psychic",
|
|
||||||
"ICE": "Ice",
|
|
||||||
"DRAGON": "Dragon",
|
|
||||||
"DARK": "Dark",
|
|
||||||
"FAIRY": "Fairy",
|
|
||||||
"STELLAR": "Stellar",
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
41
src/locales/es/pokemon-info.ts
Normal file
41
src/locales/es/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "PV",
|
||||||
|
"HPshortened": "PV",
|
||||||
|
"ATK": "Ataque",
|
||||||
|
"ATKshortened": "Ata",
|
||||||
|
"DEF": "Defensa",
|
||||||
|
"DEFshortened": "Def",
|
||||||
|
"SPATK": "At. Esp.",
|
||||||
|
"SPATKshortened": "AtEsp",
|
||||||
|
"SPDEF": "Def. Esp.",
|
||||||
|
"SPDEFshortened": "DefEsp",
|
||||||
|
"SPD": "Velocidad",
|
||||||
|
"SPDshortened": "Veloc."
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Unknown",
|
||||||
|
"NORMAL": "Normal",
|
||||||
|
"FIGHTING": "Fighting",
|
||||||
|
"FLYING": "Flying",
|
||||||
|
"POISON": "Poison",
|
||||||
|
"GROUND": "Ground",
|
||||||
|
"ROCK": "Rock",
|
||||||
|
"BUG": "Bug",
|
||||||
|
"GHOST": "Ghost",
|
||||||
|
"STEEL": "Steel",
|
||||||
|
"FIRE": "Fire",
|
||||||
|
"WATER": "Water",
|
||||||
|
"GRASS": "Grass",
|
||||||
|
"ELECTRIC": "Electric",
|
||||||
|
"PSYCHIC": "Psychic",
|
||||||
|
"ICE": "Ice",
|
||||||
|
"DRAGON": "Dragon",
|
||||||
|
"DARK": "Dark",
|
||||||
|
"FAIRY": "Fairy",
|
||||||
|
"STELLAR": "Stellar",
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "PV",
|
|
||||||
"HPshortened": "PV",
|
|
||||||
"ATK": "Ataque",
|
|
||||||
"ATKshortened": "Ata",
|
|
||||||
"DEF": "Defensa",
|
|
||||||
"DEFshortened": "Def",
|
|
||||||
"SPATK": "At. Esp.",
|
|
||||||
"SPATKshortened": "AtEsp",
|
|
||||||
"SPDEF": "Def. Esp.",
|
|
||||||
"SPDEFshortened": "DefEsp",
|
|
||||||
"SPD": "Velocidad",
|
|
||||||
"SPDshortened": "Veloc."
|
|
||||||
} as const;
|
|
10
src/locales/fr/battle-message-ui-handler.ts
Normal file
10
src/locales/fr/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Exceptionnel",
|
||||||
|
"ivFantastic": "Fantastique",
|
||||||
|
"ivVeryGood": "Très bon",
|
||||||
|
"ivPrettyGood": "Bon",
|
||||||
|
"ivDecent": "Passable…",
|
||||||
|
"ivNoGood": "Pas top…",
|
||||||
|
} as const;
|
@ -2,47 +2,47 @@ import { BerryTranslationEntries } from "#app/plugins/i18n";
|
|||||||
|
|
||||||
export const berry: BerryTranslationEntries = {
|
export const berry: BerryTranslationEntries = {
|
||||||
"SITRUS": {
|
"SITRUS": {
|
||||||
name: "Sitrus Berry",
|
name: "Baie Sitrus",
|
||||||
effect: "Restores 25% HP if HP is below 50%",
|
effect: "Restaure 25% des PV s’ils sont inférieurs à 50%",
|
||||||
},
|
},
|
||||||
"LUM": {
|
"LUM": {
|
||||||
name: "Lum Berry",
|
name: "Baie Prine",
|
||||||
effect: "Cures any non-volatile status condition and confusion",
|
effect: "Soigne tout problème de statut permanant et la confusion",
|
||||||
},
|
},
|
||||||
"ENIGMA": {
|
"ENIGMA": {
|
||||||
name: "Enigma Berry",
|
name: "Baie Enigma",
|
||||||
effect: "Restores 25% HP if hit by a super effective move",
|
effect: "Restaure 25% des PV si touché par une capacité super efficace",
|
||||||
},
|
},
|
||||||
"LIECHI": {
|
"LIECHI": {
|
||||||
name: "Liechi Berry",
|
name: "Baie Lichii",
|
||||||
effect: "Raises Attack if HP is below 25%",
|
effect: "Augmente l’Attaque si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"GANLON": {
|
"GANLON": {
|
||||||
name: "Ganlon Berry",
|
name: "Baie Lingan",
|
||||||
effect: "Raises Defense if HP is below 25%",
|
effect: "Augmente la Défense si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"PETAYA": {
|
"PETAYA": {
|
||||||
name: "Petaya Berry",
|
name: "Baie Pitaye",
|
||||||
effect: "Raises Sp. Atk if HP is below 25%",
|
effect: "Augmente l’Atq. Spé. si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"APICOT": {
|
"APICOT": {
|
||||||
name: "Apicot Berry",
|
name: "Baie Abriko",
|
||||||
effect: "Raises Sp. Def if HP is below 25%",
|
effect: "Augmente la Déf. Spé. si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"SALAC": {
|
"SALAC": {
|
||||||
name: "Salac Berry",
|
name: "Baie Sailak",
|
||||||
effect: "Raises Speed if HP is below 25%",
|
effect: "Augmente la Vitesse si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"LANSAT": {
|
"LANSAT": {
|
||||||
name: "Lansat Berry",
|
name: "Baie Lansat",
|
||||||
effect: "Raises critical hit ratio if HP is below 25%",
|
effect: "Augmente le taux de coups critiques si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"STARF": {
|
"STARF": {
|
||||||
name: "Starf Berry",
|
name: "Baie Frista",
|
||||||
effect: "Sharply raises a random stat if HP is below 25%",
|
effect: "Augmente énormément une statistique au hasard si les PV sont inférieurs à 25%",
|
||||||
},
|
},
|
||||||
"LEPPA": {
|
"LEPPA": {
|
||||||
name: "Leppa Berry",
|
name: "Baie Mepo",
|
||||||
effect: "Restores 10 PP to a move if its PP reaches 0",
|
effect: "Restaure 10 PP à une capacité dès que ses PP tombent à 0",
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -12,15 +12,15 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
import { splashMessages } from "./splash-messages";
|
import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
export const frConfig = {
|
export const frConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
abilityTriggers: abilityTriggers,
|
abilityTriggers: abilityTriggers,
|
||||||
@ -36,7 +36,7 @@ export const frConfig = {
|
|||||||
nature: nature,
|
nature: nature,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
splashMessages: splashMessages,
|
splashMessages: splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
titles: titles,
|
titles: titles,
|
||||||
@ -44,6 +44,6 @@ export const frConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
|
battleMessageUiHandler: battleMessageUiHandler,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
||||||
|
|
@ -384,26 +384,4 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
"CHILL_DRIVE": "Module Aqua",
|
"CHILL_DRIVE": "Module Aqua",
|
||||||
"DOUSE_DRIVE": "Module Choc",
|
"DOUSE_DRIVE": "Module Choc",
|
||||||
},
|
},
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Inconnu",
|
|
||||||
"NORMAL": "Normal",
|
|
||||||
"FIGHTING": "Combat",
|
|
||||||
"FLYING": "Vol",
|
|
||||||
"POISON": "Poison",
|
|
||||||
"GROUND": "Sol",
|
|
||||||
"ROCK": "Roche",
|
|
||||||
"BUG": "Insecte",
|
|
||||||
"GHOST": "Spectre",
|
|
||||||
"STEEL": "Acier",
|
|
||||||
"FIRE": "Feu",
|
|
||||||
"WATER": "Eau",
|
|
||||||
"GRASS": "Plante",
|
|
||||||
"ELECTRIC": "Électrik",
|
|
||||||
"PSYCHIC": "Psy",
|
|
||||||
"ICE": "Glace",
|
|
||||||
"DRAGON": "Dragon",
|
|
||||||
"DARK": "Ténèbres",
|
|
||||||
"FAIRY": "Fée",
|
|
||||||
"STELLAR": "Stellaire",
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
||||||
|
41
src/locales/fr/pokemon-info.ts
Normal file
41
src/locales/fr/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "PV",
|
||||||
|
"HPshortened": "PV",
|
||||||
|
"ATK": "Attaque",
|
||||||
|
"ATKshortened": "Atq",
|
||||||
|
"DEF": "Défense",
|
||||||
|
"DEFshortened": "Déf",
|
||||||
|
"SPATK": "Atq. Spé.",
|
||||||
|
"SPATKshortened": "AtqSp",
|
||||||
|
"SPDEF": "Déf. Spé.",
|
||||||
|
"SPDEFshortened": "DéfSp",
|
||||||
|
"SPD": "Vitesse",
|
||||||
|
"SPDshortened": "Vit"
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Inconnu",
|
||||||
|
"NORMAL": "Normal",
|
||||||
|
"FIGHTING": "Combat",
|
||||||
|
"FLYING": "Vol",
|
||||||
|
"POISON": "Poison",
|
||||||
|
"GROUND": "Sol",
|
||||||
|
"ROCK": "Roche",
|
||||||
|
"BUG": "Insecte",
|
||||||
|
"GHOST": "Spectre",
|
||||||
|
"STEEL": "Acier",
|
||||||
|
"FIRE": "Feu",
|
||||||
|
"WATER": "Eau",
|
||||||
|
"GRASS": "Plante",
|
||||||
|
"ELECTRIC": "Électrik",
|
||||||
|
"PSYCHIC": "Psy",
|
||||||
|
"ICE": "Glace",
|
||||||
|
"DRAGON": "Dragon",
|
||||||
|
"DARK": "Ténèbres",
|
||||||
|
"FAIRY": "Fée",
|
||||||
|
"STELLAR": "Stellaire",
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "PV",
|
|
||||||
"HPshortened": "PV",
|
|
||||||
"ATK": "Attaque",
|
|
||||||
"ATKshortened": "Atq",
|
|
||||||
"DEF": "Défense",
|
|
||||||
"DEFshortened": "Déf",
|
|
||||||
"SPATK": "Atq. Spé.",
|
|
||||||
"SPATKshortened": "AtqSp",
|
|
||||||
"SPDEF": "Déf. Spé.",
|
|
||||||
"SPDEFshortened": "DéfSp",
|
|
||||||
"SPD": "Vitesse",
|
|
||||||
"SPDshortened": "Vit"
|
|
||||||
} as const;
|
|
@ -35,7 +35,7 @@ export const trainerClasses: SimpleTranslationEntries = {
|
|||||||
"clerk": "Employé",
|
"clerk": "Employé",
|
||||||
"clerk_female": "Employée",
|
"clerk_female": "Employée",
|
||||||
"colleagues": "Collègues de Bureau",
|
"colleagues": "Collègues de Bureau",
|
||||||
"crush_kin": "Crush Kin",
|
"crush_kin": "Duo Baston",
|
||||||
"cyclist": "Cycliste",
|
"cyclist": "Cycliste",
|
||||||
"cyclist_female": "Cycliste",
|
"cyclist_female": "Cycliste",
|
||||||
"cyclists": "Cyclistes",
|
"cyclists": "Cyclistes",
|
||||||
|
10
src/locales/it/battle-message-ui-handler.ts
Normal file
10
src/locales/it/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Stellare",
|
||||||
|
"ivFantastic": "Eccellente",
|
||||||
|
"ivVeryGood": "Notevole",
|
||||||
|
"ivPrettyGood": "Normale",
|
||||||
|
"ivDecent": "Sufficiente",
|
||||||
|
"ivNoGood": "Mediocre",
|
||||||
|
} as const;
|
@ -23,16 +23,16 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"attackFailed": "Ma ha fallito!",
|
"attackFailed": "Ma ha fallito!",
|
||||||
"attackHitsCount": `Colpito {{count}} volta/e!`,
|
"attackHitsCount": `Colpito {{count}} volta/e!`,
|
||||||
"expGain": "{{pokemonName}} ha guadagnato\n{{exp}} Punti Esperienza!",
|
"expGain": "{{pokemonName}} ha guadagnato\n{{exp}} Punti Esperienza!",
|
||||||
"levelUp": "{{pokemonName}} è salito al \nlivello {{level}}!",
|
"levelUp": "{{pokemonName}} è salito al\nlivello {{level}}!",
|
||||||
"learnMove": "{{pokemonName}} impara \n{{moveName}}!",
|
"learnMove": "{{pokemonName}} impara\n{{moveName}}!",
|
||||||
"learnMovePrompt": "{{pokemonName}} vorrebbe imparare\n{{moveName}}.",
|
"learnMovePrompt": "{{pokemonName}} vorrebbe imparare\n{{moveName}}.",
|
||||||
"learnMoveLimitReached": "Tuttavia, {{pokemonName}} \nconosce già quattro mosse.",
|
"learnMoveLimitReached": "Tuttavia, {{pokemonName}}\nconosce già quattro mosse.",
|
||||||
"learnMoveReplaceQuestion": "Vuoi che ne dimentichi una e al suo \nposto la sostituisca con {{moveName}}?",
|
"learnMoveReplaceQuestion": "Vuoi che ne dimentichi una e al suo\nposto apprenda {{moveName}}?",
|
||||||
"learnMoveStopTeaching": "Vuoi smettere di fargli imparare \n{{moveName}}?",
|
"learnMoveStopTeaching": "Vuoi smettere di fargli imparare\n{{moveName}}?",
|
||||||
"learnMoveNotLearned": "{{pokemonName}} non ha imparato\n{{moveName}}.",
|
"learnMoveNotLearned": "{{pokemonName}} non ha imparato\n{{moveName}}.",
|
||||||
"learnMoveForgetQuestion": "Quale mossa deve dimenticare?",
|
"learnMoveForgetQuestion": "Quale mossa deve dimenticare?",
|
||||||
"learnMoveForgetSuccess": "{{pokemonName}} ha dimenticato la mossa\n{{moveName}}.",
|
"learnMoveForgetSuccess": "{{pokemonName}} ha dimenticato la mossa\n{{moveName}}.",
|
||||||
"countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Puff!",
|
"countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}ta-daaaa!",
|
||||||
"learnMoveAnd": "E…",
|
"learnMoveAnd": "E…",
|
||||||
"levelCapUp": "Il livello massimo\nè aumentato a {{levelCap}}!",
|
"levelCapUp": "Il livello massimo\nè aumentato a {{levelCap}}!",
|
||||||
"moveNotImplemented": "{{moveName}} non è ancora implementata e non può essere selezionata.",
|
"moveNotImplemented": "{{moveName}} non è ancora implementata e non può essere selezionata.",
|
||||||
@ -51,6 +51,6 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"escapeVerbFlee": "fuggendo",
|
"escapeVerbFlee": "fuggendo",
|
||||||
"notDisabled": "{{pokemonName}}'s {{moveName}} non è più\ndisabilitata!",
|
"notDisabled": "{{pokemonName}}'s {{moveName}} non è più\ndisabilitata!",
|
||||||
"skipItemQuestion": "Sei sicuro di non voler prendere nessun oggetto?",
|
"skipItemQuestion": "Sei sicuro di non voler prendere nessun oggetto?",
|
||||||
"eggHatching": "Oh?",
|
"eggHatching": "Oh!",
|
||||||
"ivScannerUseQuestion": "Vuoi usare lo scanner di IV su {{pokemonName}}?"
|
"ivScannerUseQuestion": "Vuoi usare lo scanner di IV su {{pokemonName}}?"
|
||||||
} as const;
|
} as const;
|
@ -2,47 +2,47 @@ import { BerryTranslationEntries } from "#app/plugins/i18n";
|
|||||||
|
|
||||||
export const berry: BerryTranslationEntries = {
|
export const berry: BerryTranslationEntries = {
|
||||||
"SITRUS": {
|
"SITRUS": {
|
||||||
name: "Sitrus Berry",
|
name: "Baccacedro",
|
||||||
effect: "Restores 25% HP if HP is below 50%",
|
effect: "Restituisce il 25% dei PS se i PS sono sotto il 50%",
|
||||||
},
|
},
|
||||||
"LUM": {
|
"LUM": {
|
||||||
name: "Lum Berry",
|
name: "Baccaprugna",
|
||||||
effect: "Cures any non-volatile status condition and confusion",
|
effect: "Se tenuta da un Pokémon risolve qualsiasi problema di stato",
|
||||||
},
|
},
|
||||||
"ENIGMA": {
|
"ENIGMA": {
|
||||||
name: "Enigma Berry",
|
name: "Baccaenigma",
|
||||||
effect: "Restores 25% HP if hit by a super effective move",
|
effect: "Restituisce il 25% dei PS se viene colpito da una mossa superefficace",
|
||||||
},
|
},
|
||||||
"LIECHI": {
|
"LIECHI": {
|
||||||
name: "Liechi Berry",
|
name: "Baccalici",
|
||||||
effect: "Raises Attack if HP is below 25%",
|
effect: "Aumenta l'Attacco se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"GANLON": {
|
"GANLON": {
|
||||||
name: "Ganlon Berry",
|
name: "Baccalongan",
|
||||||
effect: "Raises Defense if HP is below 25%",
|
effect: "Aumenta la Difesa se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"PETAYA": {
|
"PETAYA": {
|
||||||
name: "Petaya Berry",
|
name: "Baccapitaya",
|
||||||
effect: "Raises Sp. Atk if HP is below 25%",
|
effect: "Aumenta l'Attacco Speciale se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"APICOT": {
|
"APICOT": {
|
||||||
name: "Apicot Berry",
|
name: "Baccacocca",
|
||||||
effect: "Raises Sp. Def if HP is below 25%",
|
effect: "Aumenta la Difesa Speciale se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"SALAC": {
|
"SALAC": {
|
||||||
name: "Salac Berry",
|
name: "Baccasalak",
|
||||||
effect: "Raises Speed if HP is below 25%",
|
effect: "Aumenta la Velocità se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"LANSAT": {
|
"LANSAT": {
|
||||||
name: "Lansat Berry",
|
name: "Baccalangsa",
|
||||||
effect: "Raises critical hit ratio if HP is below 25%",
|
effect: "Aumenta la probabilità di Colpo Critico se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"STARF": {
|
"STARF": {
|
||||||
name: "Starf Berry",
|
name: "Baccambola",
|
||||||
effect: "Sharply raises a random stat if HP is below 25%",
|
effect: "Aumenta drasticamente una statistica casuale se i PS sono sotto il 25%",
|
||||||
},
|
},
|
||||||
"LEPPA": {
|
"LEPPA": {
|
||||||
name: "Leppa Berry",
|
name: "Baccamela",
|
||||||
effect: "Restores 10 PP to a move if its PP reaches 0",
|
effect: "Ripristina 10 PP a una mossa se i suoi PP raggiungono lo 0",
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
@ -12,15 +12,15 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
import { splashMessages } from "./splash-messages";
|
import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
export const itConfig = {
|
export const itConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
abilityTriggers: abilityTriggers,
|
abilityTriggers: abilityTriggers,
|
||||||
@ -36,7 +36,7 @@ export const itConfig = {
|
|||||||
nature: nature,
|
nature: nature,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
splashMessages: splashMessages,
|
splashMessages: splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
titles: titles,
|
titles: titles,
|
||||||
@ -44,5 +44,6 @@ export const itConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
|
battleMessageUiHandler: battleMessageUiHandler,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
@ -384,26 +384,4 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
"CHILL_DRIVE": "Gelomodulo",
|
"CHILL_DRIVE": "Gelomodulo",
|
||||||
"DOUSE_DRIVE": "Idromodulo",
|
"DOUSE_DRIVE": "Idromodulo",
|
||||||
},
|
},
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Sconosciuto",
|
|
||||||
"NORMAL": "Normale",
|
|
||||||
"FIGHTING": "Lotta",
|
|
||||||
"FLYING": "Volante",
|
|
||||||
"POISON": "Veleno",
|
|
||||||
"GROUND": "Terra",
|
|
||||||
"ROCK": "Roccia",
|
|
||||||
"BUG": "Coleottero",
|
|
||||||
"GHOST": "Spettro",
|
|
||||||
"STEEL": "Acciaio",
|
|
||||||
"FIRE": "Fuoco",
|
|
||||||
"WATER": "Acqua",
|
|
||||||
"GRASS": "Erba",
|
|
||||||
"ELECTRIC": "Elettro",
|
|
||||||
"PSYCHIC": "Psico",
|
|
||||||
"ICE": "Ghiaccio",
|
|
||||||
"DRAGON": "Drago",
|
|
||||||
"DARK": "Buio",
|
|
||||||
"FAIRY": "Folletto",
|
|
||||||
"STELLAR": "Astrale",
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
41
src/locales/it/pokemon-info.ts
Normal file
41
src/locales/it/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "PS Max",
|
||||||
|
"HPshortened": "PS",
|
||||||
|
"ATK": "Attacco",
|
||||||
|
"ATKshortened": "Att",
|
||||||
|
"DEF": "Difesa",
|
||||||
|
"DEFshortened": "Dif",
|
||||||
|
"SPATK": "Att. Sp.",
|
||||||
|
"SPATKshortened": "AttSp",
|
||||||
|
"SPDEF": "Dif. Sp.",
|
||||||
|
"SPDEFshortened": "DifSp",
|
||||||
|
"SPD": "Velocità",
|
||||||
|
"SPDshortened": "Vel"
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Sconosciuto",
|
||||||
|
"NORMAL": "Normale",
|
||||||
|
"FIGHTING": "Lotta",
|
||||||
|
"FLYING": "Volante",
|
||||||
|
"POISON": "Veleno",
|
||||||
|
"GROUND": "Terra",
|
||||||
|
"ROCK": "Roccia",
|
||||||
|
"BUG": "Coleottero",
|
||||||
|
"GHOST": "Spettro",
|
||||||
|
"STEEL": "Acciaio",
|
||||||
|
"FIRE": "Fuoco",
|
||||||
|
"WATER": "Acqua",
|
||||||
|
"GRASS": "Erba",
|
||||||
|
"ELECTRIC": "Elettro",
|
||||||
|
"PSYCHIC": "Psico",
|
||||||
|
"ICE": "Ghiaccio",
|
||||||
|
"DRAGON": "Drago",
|
||||||
|
"DARK": "Buio",
|
||||||
|
"FAIRY": "Folletto",
|
||||||
|
"STELLAR": "Astrale",
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "PS Max",
|
|
||||||
"HPshortened": "PS",
|
|
||||||
"ATK": "Attacco",
|
|
||||||
"ATKshortened": "Att",
|
|
||||||
"DEF": "Difesa",
|
|
||||||
"DEFshortened": "Dif",
|
|
||||||
"SPATK": "Att. Sp.",
|
|
||||||
"SPATKshortened": "AttSp",
|
|
||||||
"SPDEF": "Dif. Sp.",
|
|
||||||
"SPDEFshortened": "DifSp",
|
|
||||||
"SPD": "Velocità",
|
|
||||||
"SPDshortened": "Vel"
|
|
||||||
} as const;
|
|
@ -2,13 +2,13 @@ import {SimpleTranslationEntries} from "#app/plugins/i18n";
|
|||||||
|
|
||||||
// Titles of special trainers like gym leaders, elite four, and the champion
|
// Titles of special trainers like gym leaders, elite four, and the champion
|
||||||
export const titles: SimpleTranslationEntries = {
|
export const titles: SimpleTranslationEntries = {
|
||||||
"elite_four": "Elite Four",
|
"elite_four": "Superquattro",
|
||||||
"gym_leader": "Gym Leader",
|
"gym_leader": "Capopalestra",
|
||||||
"gym_leader_female": "Gym Leader",
|
"gym_leader_female": "Capopalestra",
|
||||||
"champion": "Champion",
|
"champion": "Campione",
|
||||||
"rival": "Rival",
|
"rival": "Rivale",
|
||||||
"professor": "Professor",
|
"professor": "Professore",
|
||||||
"frontier_brain": "Frontier Brain",
|
"frontier_brain": "Asso Lotta",
|
||||||
// Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc.
|
// Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc.
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
|
5
src/locales/pt_BR/ability-trigger.ts
Normal file
5
src/locales/pt_BR/ability-trigger.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const abilityTriggers: SimpleTranslationEntries = {
|
||||||
|
'blockRecoilDamage' : `{{abilityName}} de {{pokemonName}}\nprotegeu-o do dano de recuo!`,
|
||||||
|
} as const;
|
10
src/locales/pt_BR/battle-message-ui-handler.ts
Normal file
10
src/locales/pt_BR/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Melhor",
|
||||||
|
"ivFantastic": "Fantástico",
|
||||||
|
"ivVeryGood": "Muito Bom",
|
||||||
|
"ivPrettyGood": "Bom",
|
||||||
|
"ivDecent": "Regular",
|
||||||
|
"ivNoGood": "Ruim",
|
||||||
|
} as const;
|
@ -3,13 +3,13 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|||||||
export const battle: SimpleTranslationEntries = {
|
export const battle: SimpleTranslationEntries = {
|
||||||
"bossAppeared": "{{bossName}} apareceu.",
|
"bossAppeared": "{{bossName}} apareceu.",
|
||||||
"trainerAppeared": "{{trainerName}}\nquer batalhar!",
|
"trainerAppeared": "{{trainerName}}\nquer batalhar!",
|
||||||
"trainerAppearedDouble": "{{trainerName}}\nwould like to battle!",
|
"trainerAppearedDouble": "{{trainerName}}\nquerem batalhar!",
|
||||||
"singleWildAppeared": "Um {{pokemonName}} selvagem apareceu!",
|
"singleWildAppeared": "Um {{pokemonName}} selvagem apareceu!",
|
||||||
"multiWildAppeared": "Um {{pokemonName1}} e um {{pokemonName2}} selvagens\napareceram!",
|
"multiWildAppeared": "Um {{pokemonName1}} e um {{pokemonName2}} selvagens\napareceram!",
|
||||||
"playerComeBack": "{{pokemonName}}, retorne!",
|
"playerComeBack": "{{pokemonName}}, retorne!",
|
||||||
"trainerComeBack": "{{trainerName}} retirou {{pokemonName}} da batalha!",
|
"trainerComeBack": "{{trainerName}} retirou {{pokemonName}} da batalha!",
|
||||||
"playerGo": "{{pokemonName}}, eu escolho você!",
|
"playerGo": "{{pokemonName}}, eu escolho você!",
|
||||||
"trainerGo": "{{trainerName}} enviou {{pokemonName}}!",
|
"trainerGo": "{{trainerName}} escolheu {{pokemonName}}!",
|
||||||
"switchQuestion": "Quer trocar\nde {{pokemonName}}?",
|
"switchQuestion": "Quer trocar\nde {{pokemonName}}?",
|
||||||
"trainerDefeated": "Você derrotou\n{{trainerName}}!",
|
"trainerDefeated": "Você derrotou\n{{trainerName}}!",
|
||||||
"pokemonCaught": "{{pokemonName}} foi capturado!",
|
"pokemonCaught": "{{pokemonName}} foi capturado!",
|
||||||
|
@ -2,47 +2,47 @@ import { BerryTranslationEntries } from "#app/plugins/i18n";
|
|||||||
|
|
||||||
export const berry: BerryTranslationEntries = {
|
export const berry: BerryTranslationEntries = {
|
||||||
"SITRUS": {
|
"SITRUS": {
|
||||||
name: "Sitrus Berry",
|
name: "Fruta Sitrus",
|
||||||
effect: "Restores 25% HP if HP is below 50%",
|
effect: "Restaura 25% dos PS se os PS estiverem abaixo de 50%",
|
||||||
},
|
},
|
||||||
"LUM": {
|
"LUM": {
|
||||||
name: "Lum Berry",
|
name: "Fruta Lum",
|
||||||
effect: "Cures any non-volatile status condition and confusion",
|
effect: "Cura qualquer mudança de estado ou confusão",
|
||||||
},
|
},
|
||||||
"ENIGMA": {
|
"ENIGMA": {
|
||||||
name: "Enigma Berry",
|
name: "Fruta Enigma",
|
||||||
effect: "Restores 25% HP if hit by a super effective move",
|
effect: "Restaura 25% dos PS se atingido por um golpe supereficaz",
|
||||||
},
|
},
|
||||||
"LIECHI": {
|
"LIECHI": {
|
||||||
name: "Liechi Berry",
|
name: "Fruta Liechi",
|
||||||
effect: "Raises Attack if HP is below 25%",
|
effect: "Aumenta o Ataque se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"GANLON": {
|
"GANLON": {
|
||||||
name: "Ganlon Berry",
|
name: "Fruta Ganlon",
|
||||||
effect: "Raises Defense if HP is below 25%",
|
effect: "Aumenta a Defesa se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"PETAYA": {
|
"PETAYA": {
|
||||||
name: "Petaya Berry",
|
name: "Fruta Petaya",
|
||||||
effect: "Raises Sp. Atk if HP is below 25%",
|
effect: "Aumenta o Ataque Especial se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"APICOT": {
|
"APICOT": {
|
||||||
name: "Apicot Berry",
|
name: "Fruta Apicot",
|
||||||
effect: "Raises Sp. Def if HP is below 25%",
|
effect: "Aumenta a Defesa Especial se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"SALAC": {
|
"SALAC": {
|
||||||
name: "Salac Berry",
|
name: "Fruta Salac",
|
||||||
effect: "Raises Speed if HP is below 25%",
|
effect: "Aumenta a Velocidade se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"LANSAT": {
|
"LANSAT": {
|
||||||
name: "Lansat Berry",
|
name: "Fruta Lansat",
|
||||||
effect: "Raises critical hit ratio if HP is below 25%",
|
effect: "Aumenta a chance de acerto crítico se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"STARF": {
|
"STARF": {
|
||||||
name: "Starf Berry",
|
name: "Fruta Starf",
|
||||||
effect: "Sharply raises a random stat if HP is below 25%",
|
effect: "Aumenta drasticamente um atributo aleatório se os PS estiverem abaixo de 25%",
|
||||||
},
|
},
|
||||||
"LEPPA": {
|
"LEPPA": {
|
||||||
name: "Leppa Berry",
|
name: "Fruta Leppa",
|
||||||
effect: "Restores 10 PP to a move if its PP reaches 0",
|
effect: "Restaura 10 PP de um movimento se seus PP acabarem",
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
@ -1,6 +1,8 @@
|
|||||||
import { ability } from "./ability";
|
import { ability } from "./ability";
|
||||||
|
import { abilityTriggers } from "./ability-trigger";
|
||||||
import { battle } from "./battle";
|
import { battle } from "./battle";
|
||||||
import { commandUiHandler } from "./command-ui-handler";
|
import { commandUiHandler } from "./command-ui-handler";
|
||||||
|
import { egg } from "./egg";
|
||||||
import { fightUiHandler } from "./fight-ui-handler";
|
import { fightUiHandler } from "./fight-ui-handler";
|
||||||
import { growth } from "./growth";
|
import { growth } from "./growth";
|
||||||
import { menu } from "./menu";
|
import { menu } from "./menu";
|
||||||
@ -10,29 +12,37 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
|
import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
export const ptBrConfig = {
|
export const ptBrConfig = {
|
||||||
ability: ability,
|
ability: ability,
|
||||||
|
abilityTriggers: abilityTriggers,
|
||||||
battle: battle,
|
battle: battle,
|
||||||
commandUiHandler: commandUiHandler,
|
commandUiHandler: commandUiHandler,
|
||||||
|
egg: egg,
|
||||||
fightUiHandler: fightUiHandler,
|
fightUiHandler: fightUiHandler,
|
||||||
menuUiHandler: menuUiHandler,
|
menuUiHandler: menuUiHandler,
|
||||||
menu: menu,
|
menu: menu,
|
||||||
move: move,
|
move: move,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
|
titles: titles,
|
||||||
|
trainerClasses: trainerClasses,
|
||||||
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
|
splashMessages: splashMessages,
|
||||||
nature: nature,
|
nature: nature,
|
||||||
growth: growth,
|
growth: growth,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
modifierType: modifierType,
|
modifierType: modifierType,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
||||||
|
21
src/locales/pt_BR/egg.ts
Normal file
21
src/locales/pt_BR/egg.ts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const egg: SimpleTranslationEntries = {
|
||||||
|
"egg": "Ovo",
|
||||||
|
"greatTier": "Raro",
|
||||||
|
"ultraTier": "Épico",
|
||||||
|
"masterTier": "Lendário",
|
||||||
|
"defaultTier": "Comum",
|
||||||
|
"hatchWavesMessageSoon": "Barulhos podem ser ouvidos vindo de dentro! Vai chocar em breve!",
|
||||||
|
"hatchWavesMessageClose": "Parece se mover ocasionalmente. Pode estar perto de chocar.",
|
||||||
|
"hatchWavesMessageNotClose": "O que vai nascer disso? Não parece estar perto de chocar.",
|
||||||
|
"hatchWavesMessageLongTime": "Parece que este ovo vai demorar bastante para chocar.",
|
||||||
|
"gachaTypeLegendary": "Chance de Lendário Aumentada",
|
||||||
|
"gachaTypeMove": "Chance de Movimento de Ovo Raro Aumentada",
|
||||||
|
"gachaTypeShiny": "Chance de Shiny Aumentada",
|
||||||
|
"selectMachine": "Escolha uma máquina.",
|
||||||
|
"notEnoughVouchers": "Você não tem vouchers suficientes!",
|
||||||
|
"tooManyEggs": "Você já tem muitos ovos!",
|
||||||
|
"pull": "Prêmio",
|
||||||
|
"pulls": "Prêmios"
|
||||||
|
} as const;
|
@ -4,406 +4,384 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
ModifierType: {
|
ModifierType: {
|
||||||
"AddPokeballModifierType": {
|
"AddPokeballModifierType": {
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
name: "{{modifierCount}}x {{pokeballName}}",
|
||||||
description: "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}",
|
description: "Ganhe x{{modifierCount}} {{pokeballName}} (Mochila: {{pokeballAmount}}) \nChance de captura: {{catchRate}}",
|
||||||
},
|
},
|
||||||
"AddVoucherModifierType": {
|
"AddVoucherModifierType": {
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
name: "{{modifierCount}}x {{voucherTypeName}}",
|
||||||
description: "Receive {{voucherTypeName}} x{{modifierCount}}",
|
description: "Ganhe x{{modifierCount}} {{voucherTypeName}}",
|
||||||
},
|
},
|
||||||
"PokemonHeldItemModifierType": {
|
"PokemonHeldItemModifierType": {
|
||||||
extra: {
|
extra: {
|
||||||
"inoperable": "{{pokemonName}} can't take\nthis item!",
|
"inoperable": "{{pokemonName}} não pode\nsegurar esse item!",
|
||||||
"tooMany": "{{pokemonName}} has too many\nof this item!",
|
"tooMany": "{{pokemonName}} tem muitos\nmuitos deste item!",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"PokemonHpRestoreModifierType": {
|
"PokemonHpRestoreModifierType": {
|
||||||
description: "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher",
|
description: "Restaura {{restorePoints}} PS ou {{restorePercent}}% PS de um Pokémon, o que for maior",
|
||||||
extra: {
|
extra: {
|
||||||
"fully": "Fully restores HP for one Pokémon",
|
"fully": "Restaura totalmente os PS de um Pokémon",
|
||||||
"fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment",
|
"fullyWithStatus": "Restaura totalmente os PS de um Pokémon e cura qualquer mudança de estado",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"PokemonReviveModifierType": {
|
"PokemonReviveModifierType": {
|
||||||
description: "Revives one Pokémon and restores {{restorePercent}}% HP",
|
description: "Reanima um Pokémon e restaura {{restorePercent}}% PS",
|
||||||
},
|
},
|
||||||
"PokemonStatusHealModifierType": {
|
"PokemonStatusHealModifierType": {
|
||||||
description: "Heals any status ailment for one Pokémon",
|
description: "Cura uma mudança de estado de um Pokémon",
|
||||||
},
|
},
|
||||||
"PokemonPpRestoreModifierType": {
|
"PokemonPpRestoreModifierType": {
|
||||||
description: "Restores {{restorePoints}} PP for one Pokémon move",
|
description: "Restaura {{restorePoints}} PP para um movimento de um Pokémon",
|
||||||
extra: {
|
extra: {
|
||||||
"fully": "Restores all PP for one Pokémon move",
|
"fully": "Restaura todos os PP para um movimento de um Pokémon",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
"PokemonAllMovePpRestoreModifierType": {
|
||||||
description: "Restores {{restorePoints}} PP for all of one Pokémon's moves",
|
description: "Restaura {{restorePoints}} PP para todos os movimentos de um Pokémon",
|
||||||
extra: {
|
extra: {
|
||||||
"fully": "Restores all PP for all of one Pokémon's moves",
|
"fully": "Restaura todos os PP para todos os movimentos de um Pokémon",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"PokemonPpUpModifierType": {
|
"PokemonPpUpModifierType": {
|
||||||
description: "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3)",
|
description: "Aumenta permanentemente os PP para o movimento de um Pokémon em {{upPoints}} para cada 5 PP máximos (máximo 3)",
|
||||||
},
|
},
|
||||||
"PokemonNatureChangeModifierType": {
|
"PokemonNatureChangeModifierType": {
|
||||||
name: "{{natureName}} Mint",
|
name: "{{natureName}} Mint",
|
||||||
description: "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter.",
|
description: "Muda a natureza de um Pokémon para {{natureName}} e a desbloqueia permanentemente para seu inicial",
|
||||||
},
|
},
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
"DoubleBattleChanceBoosterModifierType": {
|
||||||
description: "Doubles the chance of an encounter being a double battle for {{battleCount}} battles",
|
description: "Dobra as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas",
|
||||||
},
|
},
|
||||||
"TempBattleStatBoosterModifierType": {
|
"TempBattleStatBoosterModifierType": {
|
||||||
description: "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles",
|
description: "Aumenta o atributo de {{tempBattleStatName}} para todos os membros da equipe por 5 batalhas",
|
||||||
},
|
},
|
||||||
"AttackTypeBoosterModifierType": {
|
"AttackTypeBoosterModifierType": {
|
||||||
description: "Increases the power of a Pokémon's {{moveType}}-type moves by 20%",
|
description: "Aumenta o poder dos ataques do tipo {{moveType}} de um Pokémon em 20%",
|
||||||
},
|
},
|
||||||
"PokemonLevelIncrementModifierType": {
|
"PokemonLevelIncrementModifierType": {
|
||||||
description: "Increases a Pokémon's level by 1",
|
description: "Aumenta em 1 o nível de um Pokémon",
|
||||||
},
|
},
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
"AllPokemonLevelIncrementModifierType": {
|
||||||
description: "Increases all party members' level by 1",
|
description: "Aumenta em 1 os níveis de todos os Pokémon",
|
||||||
},
|
},
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
"PokemonBaseStatBoosterModifierType": {
|
||||||
description: "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit.",
|
description: "Aumenta o atributo base de {{statName}} em 10%. Quanto maior os IVs, maior o limite de aumento",
|
||||||
},
|
},
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
"AllPokemonFullHpRestoreModifierType": {
|
||||||
description: "Restores 100% HP for all Pokémon",
|
description: "Restaura totalmente os PS de todos os Pokémon",
|
||||||
},
|
},
|
||||||
"AllPokemonFullReviveModifierType": {
|
"AllPokemonFullReviveModifierType": {
|
||||||
description: "Revives all fainted Pokémon, fully restoring HP",
|
description: "Reanima todos os Pokémon, restaurando totalmente seus PS",
|
||||||
},
|
},
|
||||||
"MoneyRewardModifierType": {
|
"MoneyRewardModifierType": {
|
||||||
description: "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}})",
|
description: "Garante uma quantidade {{moneyMultiplier}} de dinheiro (₽{{moneyAmount}})",
|
||||||
extra: {
|
extra: {
|
||||||
"small": "small",
|
"small": "pequena",
|
||||||
"moderate": "moderate",
|
"moderate": "moderada",
|
||||||
"large": "large",
|
"large": "grande",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"ExpBoosterModifierType": {
|
"ExpBoosterModifierType": {
|
||||||
description: "Increases gain of EXP. Points by {{boostPercent}}%",
|
description: "Aumenta o ganho de pontos de experiência em {{boostPercent}}%",
|
||||||
},
|
},
|
||||||
"PokemonExpBoosterModifierType": {
|
"PokemonExpBoosterModifierType": {
|
||||||
description: "Increases the holder's gain of EXP. Points by {{boostPercent}}%",
|
description: "Aumenta o ganho de pontos de experiência de quem segura em {{boostPercent}}%",
|
||||||
},
|
},
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
"PokemonFriendshipBoosterModifierType": {
|
||||||
description: "Increases friendship gain per victory by 50%",
|
description: "Aumenta o ganho de amizade por vitória em 50%",
|
||||||
},
|
},
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
"PokemonMoveAccuracyBoosterModifierType": {
|
||||||
description: "Increases move accuracy by {{accuracyAmount}} (maximum 100)",
|
description: "Aumenta a precisão dos movimentos em {{accuracyAmount}} (máximo 100)",
|
||||||
},
|
},
|
||||||
"PokemonMultiHitModifierType": {
|
"PokemonMultiHitModifierType": {
|
||||||
description: "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively",
|
description: "Ataques acertam uma vez adicional ao custo de uma redução de poder de 60/75/82.5% por item, respectivamente",
|
||||||
},
|
},
|
||||||
"TmModifierType": {
|
"TmModifierType": {
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
name: "TM{{moveId}} - {{moveName}}",
|
||||||
description: "Teach {{moveName}} to a Pokémon",
|
description: "Ensina {{moveName}} a um Pokémon",
|
||||||
},
|
},
|
||||||
"EvolutionItemModifierType": {
|
"EvolutionItemModifierType": {
|
||||||
description: "Causes certain Pokémon to evolve",
|
description: "Faz certos Pokémon evoluírem",
|
||||||
},
|
},
|
||||||
"FormChangeItemModifierType": {
|
"FormChangeItemModifierType": {
|
||||||
description: "Causes certain Pokémon to change form",
|
description: "Faz certos Pokémon mudarem de forma",
|
||||||
},
|
},
|
||||||
"FusePokemonModifierType": {
|
"FusePokemonModifierType": {
|
||||||
description: "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool)",
|
description: "Combina dois Pokémon (transfere Habilidade, divide os atributos base e tipos, compartilha os movimentos)",
|
||||||
},
|
},
|
||||||
"TerastallizeModifierType": {
|
"TerastallizeModifierType": {
|
||||||
name: "{{teraType}} Tera Shard",
|
name: "{{teraType}} Fragmento Tera",
|
||||||
description: "{{teraType}} Terastallizes the holder for up to 10 battles",
|
description: "{{teraType}} Terastaliza um Pokémon por até 10 batalhas",
|
||||||
},
|
},
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
"ContactHeldItemTransferChanceModifierType": {
|
||||||
description: "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen",
|
description: "Quando atacar, tem {{chancePercent}}% de chance de roubar um item do oponente",
|
||||||
},
|
},
|
||||||
"TurnHeldItemTransferModifierType": {
|
"TurnHeldItemTransferModifierType": {
|
||||||
description: "Every turn, the holder acquires one held item from the foe",
|
description: "Todo turno, o Pokémon ganha um item aleatório do oponente",
|
||||||
},
|
},
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
"EnemyAttackStatusEffectChanceModifierType": {
|
||||||
description: "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves",
|
description: "Ganha {{chancePercent}}% de chance de infligir {{statusEffect}} com ataques",
|
||||||
},
|
},
|
||||||
"EnemyEndureChanceModifierType": {
|
"EnemyEndureChanceModifierType": {
|
||||||
description: "Adds a {{chancePercent}}% chance of enduring a hit",
|
description: "Ganha {{chancePercent}}% de chance de sobreviver a um ataque que o faria desmaiar",
|
||||||
},
|
},
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Rare Candy" },
|
"RARE_CANDY": { name: "Doce Raro" },
|
||||||
"RARER_CANDY": { name: "Rarer Candy" },
|
"RARER_CANDY": { name: "Doce Raríssimo" },
|
||||||
|
|
||||||
"MEGA_BRACELET": { name: "Mega Bracelet", description: "Mega Stones become available" },
|
"MEGA_BRACELET": { name: "Mega Bracelete", description: "Mega Stones become available" },
|
||||||
"DYNAMAX_BAND": { name: "Dynamax Band", description: "Max Mushrooms become available" },
|
"DYNAMAX_BAND": { name: "Bracelete Dynamax", description: "Max Mushrooms become available" },
|
||||||
"TERA_ORB": { name: "Tera Orb", description: "Tera Shards become available" },
|
"TERA_ORB": { name: "Orbe Tera", description: "Fragmentos Tera ficam disponíveis" },
|
||||||
|
|
||||||
"MAP": { name: "Map", description: "Allows you to choose your destination at a crossroads" },
|
"MAP": { name: "Mapa", description: "Permite escolher a próxima rota" },
|
||||||
|
|
||||||
"POTION": { name: "Potion" },
|
"POTION": { name: "Poção" },
|
||||||
"SUPER_POTION": { name: "Super Potion" },
|
"SUPER_POTION": { name: "Super Poção" },
|
||||||
"HYPER_POTION": { name: "Hyper Potion" },
|
"HYPER_POTION": { name: "Hiper Poção" },
|
||||||
"MAX_POTION": { name: "Max Potion" },
|
"MAX_POTION": { name: "Poção Máxima" },
|
||||||
"FULL_RESTORE": { name: "Full Restore" },
|
"FULL_RESTORE": { name: "Restaurador" },
|
||||||
|
|
||||||
"REVIVE": { name: "Revive" },
|
"REVIVE": { name: "Reanimador" },
|
||||||
"MAX_REVIVE": { name: "Max Revive" },
|
"MAX_REVIVE": { name: "Reanimador Máximo" },
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Full Heal" },
|
"FULL_HEAL": { name: "Cura Total" },
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Sacred Ash" },
|
"SACRED_ASH": { name: "Cinza Sagrada" },
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Reviver Seed", description: "Revives the holder for 1/2 HP upon fainting" },
|
"REVIVER_SEED": { name: "Semente Reanimadora", description: "Após desmaiar, reanima com 50% de PS" },
|
||||||
|
|
||||||
"ETHER": { name: "Ether" },
|
"ETHER": { name: "Éter" },
|
||||||
"MAX_ETHER": { name: "Max Ether" },
|
"MAX_ETHER": { name: "Éter Máximo" },
|
||||||
|
|
||||||
"ELIXIR": { name: "Elixir" },
|
"ELIXIR": { name: "Elixir" },
|
||||||
"MAX_ELIXIR": { name: "Max Elixir" },
|
"MAX_ELIXIR": { name: "Elixir Máximo" },
|
||||||
|
|
||||||
"PP_UP": { name: "PP Up" },
|
"PP_UP": { name: "Mais PP" },
|
||||||
"PP_MAX": { name: "PP Max" },
|
"PP_MAX": { name: "PP Máximo" },
|
||||||
|
|
||||||
"LURE": { name: "Lure" },
|
"LURE": { name: "Incenso" },
|
||||||
"SUPER_LURE": { name: "Super Lure" },
|
"SUPER_LURE": { name: "Super Incenso" },
|
||||||
"MAX_LURE": { name: "Max Lure" },
|
"MAX_LURE": { name: "Incenso Máximo" },
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Memory Mushroom", description: "Recall one Pokémon's forgotten move" },
|
"MEMORY_MUSHROOM": { name: "Cogumemória", description: "Relembra um movimento esquecido" },
|
||||||
|
|
||||||
"EXP_SHARE": { name: "EXP. All", description: "Non-participants receive 20% of a single participant's EXP. Points" },
|
"EXP_SHARE": { name: "Compart. de Exp.", description: "Distribui pontos de experiência para todos os membros da equipe" },
|
||||||
"EXP_BALANCE": { name: "EXP. Balance", description: "Weighs EXP. Points received from battles towards lower-leveled party members" },
|
"EXP_BALANCE": { name: "Balanceador de Exp.", description: "Distribui pontos de experiência principalmente para os Pokémon mais fracos" },
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Oval Charm", description: "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP" },
|
"OVAL_CHARM": { name: "Amuleto Oval", description: "Quando vários Pokémon participam de uma batalha, cada um recebe 10% extra de pontos de experiência" },
|
||||||
|
|
||||||
"EXP_CHARM": { name: "EXP. Charm" },
|
"EXP_CHARM": { name: "Amuleto de Exp." },
|
||||||
"SUPER_EXP_CHARM": { name: "Super EXP. Charm" },
|
"SUPER_EXP_CHARM": { name: "Super Amuleto de Exp." },
|
||||||
"GOLDEN_EXP_CHARM": { name: "Golden EXP. Charm" },
|
"GOLDEN_EXP_CHARM": { name: "Amuleto de Exp. Dourado" },
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Lucky Egg" },
|
"LUCKY_EGG": { name: "Ovo da Sorte" },
|
||||||
"GOLDEN_EGG": { name: "Golden Egg" },
|
"GOLDEN_EGG": { name: "Ovo Dourado" },
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Soothe Bell" },
|
"SOOTHE_BELL": { name: "Guizo" },
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Soul Dew", description: "Increases the influence of a Pokémon's nature on its stats by 10% (additive)" },
|
"SOUL_DEW": { name: "Joia da Alma", description: "Aumenta a influência da natureza de um Pokémon em seus atributos em 10% (cumulativo)" },
|
||||||
|
|
||||||
"NUGGET": { name: "Nugget" },
|
"NUGGET": { name: "Pepita" },
|
||||||
"BIG_NUGGET": { name: "Big Nugget" },
|
"BIG_NUGGET": { name: "Pepita Grande" },
|
||||||
"RELIC_GOLD": { name: "Relic Gold" },
|
"RELIC_GOLD": { name: "Relíquia de Ouro" },
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Amulet Coin", description: "Increases money rewards by 20%" },
|
"AMULET_COIN": { name: "Moeda Amuleto", description: "Aumenta a recompensa de dinheiro em 50%" },
|
||||||
"GOLDEN_PUNCH": { name: "Golden Punch", description: "Grants 50% of damage inflicted as money" },
|
"GOLDEN_PUNCH": { name: "Soco Dourado", description: "Concede 50% do dano causado em dinheiro" },
|
||||||
"COIN_CASE": { name: "Coin Case", description: "After every 10th battle, receive 10% of your money in interest" },
|
"COIN_CASE": { name: "Moedeira", description: "Após cada 10ª batalha, recebe 10% de seu dinheiro em juros" },
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Lock Capsule", description: "Allows you to lock item rarities when rerolling items" },
|
"LOCK_CAPSULE": { name: "Cápsula de Travamento", description: "Permite que você trave raridades de itens ao rolar novamente" },
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Grip Claw" },
|
"GRIP_CLAW": { name: "Garra-Aperto" },
|
||||||
"WIDE_LENS": { name: "Wide Lens" },
|
"WIDE_LENS": { name: "Lente Ampla" },
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Multi Lens" },
|
"MULTI_LENS": { name: "Multi Lentes" },
|
||||||
|
|
||||||
"HEALING_CHARM": { name: "Healing Charm", description: "Increases the effectiveness of HP restoring moves and items by 10% (excludes Revives)" },
|
"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: "Candy Jar", description: "Increases the number of levels added by Rare Candy items by 1" },
|
"CANDY_JAR": { name: "Pote de Doces", description: "Aumenta o número de níveis adicionados pelo Doce Raro em 1" },
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Berry Pouch", description: "Adds a 25% chance that a used berry will not be consumed" },
|
"BERRY_POUCH": { name: "Bolsa de Berries", description: "Adiciona uma chance de 25% de que uma berry usada não seja consumida" },
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Focus Band", description: "Adds a 10% chance to survive with 1 HP after being damaged enough to faint" },
|
"FOCUS_BAND": { name: "Bandana", description: "Adiciona uma chance de 10% de sobreviver com 1 PS após ser danificado o suficiente para desmaiar" },
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Quick Claw", description: "Adds a 10% chance to move first regardless of speed (after priority)" },
|
"QUICK_CLAW": { name: "Garra Rápida", description: "Adiciona uma chance de 10% de atacar primeiro, ignorando sua velocidade (após prioridades)" },
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "King's Rock", description: "Adds a 10% chance an attack move will cause the opponent to flinch" },
|
"KINGS_ROCK": { name: "Pedra do Rei", description: "Adiciona uma chance de 10% de movimentos fazerem o oponente hesitar" },
|
||||||
|
|
||||||
"LEFTOVERS": { name: "Leftovers", description: "Heals 1/16 of a Pokémon's maximum HP every turn" },
|
"LEFTOVERS": { name: "Sobras", description: "Cura 1/16 dos PS máximos de um Pokémon a cada turno" },
|
||||||
"SHELL_BELL": { name: "Shell Bell", description: "Heals 1/8 of a Pokémon's dealt damage" },
|
"SHELL_BELL": { name: "Concha-Sino", description: "Cura 1/8 do dano causado por um Pokémon" },
|
||||||
|
|
||||||
"BATON": { name: "Baton", description: "Allows passing along effects when switching Pokémon, which also bypasses traps" },
|
"BATON": { name: "Bastão", description: "Permite passar mudanças de atributo ao trocar Pokémon, ignorando armadilhas" },
|
||||||
|
|
||||||
"SHINY_CHARM": { name: "Shiny Charm", description: "Dramatically increases the chance of a wild Pokémon being Shiny" },
|
"SHINY_CHARM": { name: "Amuleto Brilhante", description: "Aumenta drasticamente a chance de um Pokémon selvagem ser Shiny" },
|
||||||
"ABILITY_CHARM": { name: "Ability Charm", description: "Dramatically increases the chance of a wild Pokémon having a Hidden Ability" },
|
"ABILITY_CHARM": { name: "Amuleto de Habilidade", description: "Aumenta drasticamente a chance de um Pokémon selvagem ter uma Habilidade Oculta" },
|
||||||
|
|
||||||
"IV_SCANNER": { name: "IV Scanner", description: "Allows scanning the IVs of wild Pokémon. 2 IVs are revealed per stack. The best IVs are shown first" },
|
"IV_SCANNER": { name: "Scanner de IVs", description: "Permite escanear os IVs de Pokémon selvagens. 2 IVs são revelados por item. Os melhores IVs são mostrados primeiro" },
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "DNA Splicers" },
|
"DNA_SPLICERS": { name: "Splicer de DNA" },
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Mini Black Hole" },
|
"MINI_BLACK_HOLE": { name: "Mini Buraco Negro" },
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Golden Poké Ball", description: "Adds 1 extra item option at the end of every battle" },
|
"GOLDEN_POKEBALL": { name: "Poké Bola Dourada", description: "Adiciona 1 opção de item extra ao final de cada batalha" },
|
||||||
|
|
||||||
"ENEMY_DAMAGE_BOOSTER": { name: "Damage Token", description: "Increases damage by 5%" },
|
"ENEMY_DAMAGE_BOOSTER": { name: "Token de Dano", description: "Aumenta o dano em 5%" },
|
||||||
"ENEMY_DAMAGE_REDUCTION": { name: "Protection Token", description: "Reduces incoming damage by 2.5%" },
|
"ENEMY_DAMAGE_REDUCTION": { name: "Token de Proteção", description: "Reduz o dano recebido em 2,5%" },
|
||||||
"ENEMY_HEAL": { name: "Recovery Token", description: "Heals 2% of max HP every turn" },
|
"ENEMY_HEAL": { name: "Token de Recuperação", description: "Cura 2% dos PS máximos a cada turno" },
|
||||||
"ENEMY_ATTACK_POISON_CHANCE": { name: "Poison Token" },
|
"ENEMY_ATTACK_POISON_CHANCE": { name: "Token de Veneno" },
|
||||||
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Paralyze Token" },
|
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Token de Paralisia" },
|
||||||
"ENEMY_ATTACK_SLEEP_CHANCE": { name: "Sleep Token" },
|
"ENEMY_ATTACK_SLEEP_CHANCE": { name: "Token de Sono" },
|
||||||
"ENEMY_ATTACK_FREEZE_CHANCE": { name: "Freeze Token" },
|
"ENEMY_ATTACK_FREEZE_CHANCE": { name: "Token de Congelamento" },
|
||||||
"ENEMY_ATTACK_BURN_CHANCE": { name: "Burn Token" },
|
"ENEMY_ATTACK_BURN_CHANCE": { name: "Token de Queimadura" },
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Full Heal Token", description: "Adds a 10% chance every turn to heal a status condition" },
|
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Token de Cura Total", description: "Adiciona uma chance de 10% a cada turno de curar uma condição de status" },
|
||||||
"ENEMY_ENDURE_CHANCE": { name: "Endure Token" },
|
"ENEMY_ENDURE_CHANCE": { name: "Token de Persistência" },
|
||||||
"ENEMY_FUSED_CHANCE": { name: "Fusion Token", description: "Adds a 1% chance that a wild Pokémon will be a fusion" },
|
"ENEMY_FUSED_CHANCE": { name: "Token de Fusão", description: "Adiciona uma chance de 1% de que um Pokémon selvagem seja uma fusão" },
|
||||||
},
|
},
|
||||||
TempBattleStatBoosterItem: {
|
TempBattleStatBoosterItem: {
|
||||||
"x_attack": "X Attack",
|
"x_attack": "Ataque X",
|
||||||
"x_defense": "X Defense",
|
"x_defense": "Defesa X",
|
||||||
"x_sp_atk": "X Sp. Atk",
|
"x_sp_atk": "Ataque Esp. X",
|
||||||
"x_sp_def": "X Sp. Def",
|
"x_sp_def": "Defesa Esp. X",
|
||||||
"x_speed": "X Speed",
|
"x_speed": "Velocidade X",
|
||||||
"x_accuracy": "X Accuracy",
|
"x_accuracy": "Precisão X",
|
||||||
"dire_hit": "Dire Hit",
|
"dire_hit": "Direto",
|
||||||
},
|
},
|
||||||
AttackTypeBoosterItem: {
|
AttackTypeBoosterItem: {
|
||||||
"silk_scarf": "Silk Scarf",
|
"silk_scarf": "Lenço de Seda",
|
||||||
"black_belt": "Black Belt",
|
"black_belt": "Faixa Preta",
|
||||||
"sharp_beak": "Sharp Beak",
|
"sharp_beak": "Bico Afiado",
|
||||||
"poison_barb": "Poison Barb",
|
"poison_barb": "Farpa Venenosa",
|
||||||
"soft_sand": "Soft Sand",
|
"soft_sand": "Areia Macia",
|
||||||
"hard_stone": "Hard Stone",
|
"hard_stone": "Pedra Dura",
|
||||||
"silver_powder": "Silver Powder",
|
"silver_powder": "Pó de Prata",
|
||||||
"spell_tag": "Spell Tag",
|
"spell_tag": "Talismã de Feitiço",
|
||||||
"metal_coat": "Metal Coat",
|
"metal_coat": "Revestimento Metálico",
|
||||||
"charcoal": "Charcoal",
|
"charcoal": "Carvão",
|
||||||
"mystic_water": "Mystic Water",
|
"mystic_water": "Água Mística",
|
||||||
"miracle_seed": "Miracle Seed",
|
"miracle_seed": "Semente Milagrosa",
|
||||||
"magnet": "Magnet",
|
"magnet": "Ímã",
|
||||||
"twisted_spoon": "Twisted Spoon",
|
"twisted_spoon": "Colher Torcida",
|
||||||
"never_melt_ice": "Never-Melt Ice",
|
"never_melt_ice": "Gelo Eterno",
|
||||||
"dragon_fang": "Dragon Fang",
|
"dragon_fang": "Presa de Dragão",
|
||||||
"black_glasses": "Black Glasses",
|
"black_glasses": "Óculos Escuros",
|
||||||
"fairy_feather": "Fairy Feather",
|
"fairy_feather": "Pena de Fada",
|
||||||
},
|
},
|
||||||
BaseStatBoosterItem: {
|
BaseStatBoosterItem: {
|
||||||
"hp_up": "HP Up",
|
"hp_up": "Mais PS",
|
||||||
"protein": "Protein",
|
"protein": "Proteína",
|
||||||
"iron": "Iron",
|
"iron": "Ferro",
|
||||||
"calcium": "Calcium",
|
"calcium": "Cálcio",
|
||||||
"zinc": "Zinc",
|
"zinc": "Zinco",
|
||||||
"carbos": "Carbos",
|
"carbos": "Carboidrato",
|
||||||
},
|
},
|
||||||
EvolutionItem: {
|
EvolutionItem: {
|
||||||
"NONE": "None",
|
"NONE": "None",
|
||||||
|
|
||||||
"LINKING_CORD": "Linking Cord",
|
"LINKING_CORD": "Cabo de Conexão",
|
||||||
"SUN_STONE": "Sun Stone",
|
"SUN_STONE": "Pedra do Sol",
|
||||||
"MOON_STONE": "Moon Stone",
|
"MOON_STONE": "Pedra da Lua",
|
||||||
"LEAF_STONE": "Leaf Stone",
|
"LEAF_STONE": "Pedra da Folha",
|
||||||
"FIRE_STONE": "Fire Stone",
|
"FIRE_STONE": "Pedra do Fogo",
|
||||||
"WATER_STONE": "Water Stone",
|
"WATER_STONE": "Pedra da Água",
|
||||||
"THUNDER_STONE": "Thunder Stone",
|
"THUNDER_STONE": "Pedra do Trovão",
|
||||||
"ICE_STONE": "Ice Stone",
|
"ICE_STONE": "Pedra do Gelo",
|
||||||
"DUSK_STONE": "Dusk Stone",
|
"DUSK_STONE": "Pedra do Crepúsculo",
|
||||||
"DAWN_STONE": "Dawn Stone",
|
"DAWN_STONE": "Pedra da Alvorada",
|
||||||
"SHINY_STONE": "Shiny Stone",
|
"SHINY_STONE": "Pedra Brilhante",
|
||||||
"CRACKED_POT": "Cracked Pot",
|
"CRACKED_POT": "Vaso Quebrado",
|
||||||
"SWEET_APPLE": "Sweet Apple",
|
"SWEET_APPLE": "Maçã Doce",
|
||||||
"TART_APPLE": "Tart Apple",
|
"TART_APPLE": "Maçã Azeda",
|
||||||
"STRAWBERRY_SWEET": "Strawberry Sweet",
|
"STRAWBERRY_SWEET": "Doce de Morango",
|
||||||
"UNREMARKABLE_TEACUP": "Unremarkable Teacup",
|
"UNREMARKABLE_TEACUP": "Xícara Comum",
|
||||||
|
|
||||||
"CHIPPED_POT": "Chipped Pot",
|
"CHIPPED_POT": "Pote Lascado",
|
||||||
"BLACK_AUGURITE": "Black Augurite",
|
"BLACK_AUGURITE": "Mineral Negro",
|
||||||
"GALARICA_CUFF": "Galarica Cuff",
|
"GALARICA_CUFF": "Bracelete de Galar",
|
||||||
"GALARICA_WREATH": "Galarica Wreath",
|
"GALARICA_WREATH": "Coroa de Galar",
|
||||||
"PEAT_BLOCK": "Peat Block",
|
"PEAT_BLOCK": "Bloco de Turfa",
|
||||||
"AUSPICIOUS_ARMOR": "Auspicious Armor",
|
"AUSPICIOUS_ARMOR": "Armadura Prometida",
|
||||||
"MALICIOUS_ARMOR": "Malicious Armor",
|
"MALICIOUS_ARMOR": "Armadura Maldita",
|
||||||
"MASTERPIECE_TEACUP": "Masterpiece Teacup",
|
"MASTERPIECE_TEACUP": "Xícara Excepcional",
|
||||||
"METAL_ALLOY": "Metal Alloy",
|
"METAL_ALLOY": "Liga de Metal",
|
||||||
"SCROLL_OF_DARKNESS": "Scroll Of Darkness",
|
"SCROLL_OF_DARKNESS": "Pergaminho da Escuridão",
|
||||||
"SCROLL_OF_WATERS": "Scroll Of Waters",
|
"SCROLL_OF_WATERS": "Pergaminho da Água",
|
||||||
"SYRUPY_APPLE": "Syrupy Apple",
|
"SYRUPY_APPLE": "Xarope de Maçã",
|
||||||
},
|
},
|
||||||
FormChangeItem: {
|
FormChangeItem: {
|
||||||
"NONE": "None",
|
"NONE": "None",
|
||||||
|
|
||||||
"ABOMASITE": "Abomasite",
|
"ABOMASITE": "Abomasita",
|
||||||
"ABSOLITE": "Absolite",
|
"ABSOLITE": "Absolita",
|
||||||
"AERODACTYLITE": "Aerodactylite",
|
"AERODACTYLITE": "Aerodactylita",
|
||||||
"AGGRONITE": "Aggronite",
|
"AGGRONITE": "Aggronita",
|
||||||
"ALAKAZITE": "Alakazite",
|
"ALAKAZITE": "Alakazita",
|
||||||
"ALTARIANITE": "Altarianite",
|
"ALTARIANITE": "Altarianita",
|
||||||
"AMPHAROSITE": "Ampharosite",
|
"AMPHAROSITE": "Ampharosita",
|
||||||
"AUDINITE": "Audinite",
|
"AUDINITE": "Audinita",
|
||||||
"BANETTITE": "Banettite",
|
"BANETTITE": "Banettita",
|
||||||
"BEEDRILLITE": "Beedrillite",
|
"BEEDRILLITE": "Beedrillita",
|
||||||
"BLASTOISINITE": "Blastoisinite",
|
"BLASTOISINITE": "Blastoisinita",
|
||||||
"BLAZIKENITE": "Blazikenite",
|
"BLAZIKENITE": "Blazikenita",
|
||||||
"CAMERUPTITE": "Cameruptite",
|
"CAMERUPTITE": "Cameruptita",
|
||||||
"CHARIZARDITE_X": "Charizardite X",
|
"CHARIZARDITE X": "Charizardita X",
|
||||||
"CHARIZARDITE_Y": "Charizardite Y",
|
"CHARIZARDITE Y": "Charizardita Y",
|
||||||
"DIANCITE": "Diancite",
|
"DIANCITE": "Diancita",
|
||||||
"GALLADITE": "Galladite",
|
"GALLADITE": "Galladita",
|
||||||
"GARCHOMPITE": "Garchompite",
|
"GARCHOMPITE": "Garchompita",
|
||||||
"GARDEVOIRITE": "Gardevoirite",
|
"GARDEVOIRITE": "Gardevoirita",
|
||||||
"GENGARITE": "Gengarite",
|
"GENGARITE": "Gengarita",
|
||||||
"GLALITITE": "Glalitite",
|
"GLALITITE": "Glalitita",
|
||||||
"GYARADOSITE": "Gyaradosite",
|
"GYARADOSITE": "Gyaradosita",
|
||||||
"HERACRONITE": "Heracronite",
|
"HERACRONITE": "Heracronita",
|
||||||
"HOUNDOOMINITE": "Houndoominite",
|
"HOUNDOOMINITE": "Houndoominita",
|
||||||
"KANGASKHANITE": "Kangaskhanite",
|
"KANGASKHANITE": "Kangaskhanita",
|
||||||
"LATIASITE": "Latiasite",
|
"LATIASITE": "Latiasita",
|
||||||
"LATIOSITE": "Latiosite",
|
"LATIOSITE": "Latiosita",
|
||||||
"LOPUNNITE": "Lopunnite",
|
"LOPUNNITE": "Lopunnita",
|
||||||
"LUCARIONITE": "Lucarionite",
|
"LUCARIONITE": "Lucarionita",
|
||||||
"MANECTITE": "Manectite",
|
"MANECTITE": "Manectita",
|
||||||
"MAWILITE": "Mawilite",
|
"MAWILITE": "Mawilita",
|
||||||
"MEDICHAMITE": "Medichamite",
|
"MEDICHAMITE": "Medichamita",
|
||||||
"METAGROSSITE": "Metagrossite",
|
"METAGROSSITE": "Metagrossita",
|
||||||
"MEWTWONITE_X": "Mewtwonite X",
|
"MEWTWONITE X": "Mewtwonita X",
|
||||||
"MEWTWONITE_Y": "Mewtwonite Y",
|
"MEWTWONITE Y": "Mewtwonita Y",
|
||||||
"PIDGEOTITE": "Pidgeotite",
|
"PIDGEOTITE": "Pidgeotita",
|
||||||
"PINSIRITE": "Pinsirite",
|
"PINSIRITE": "Pinsirita",
|
||||||
"RAYQUAZITE": "Rayquazite",
|
"SABLENITE": "Sablenita",
|
||||||
"SABLENITE": "Sablenite",
|
"RAYQUAZITE": "Rayquazita",
|
||||||
"SALAMENCITE": "Salamencite",
|
"SALAMENCITE": "Salamencita",
|
||||||
"SCEPTILITE": "Sceptilite",
|
"SCEPTILITE": "Sceptilita",
|
||||||
"SCIZORITE": "Scizorite",
|
"SCIZORITE": "Scizorita",
|
||||||
"SHARPEDONITE": "Sharpedonite",
|
"SHARPEDONITE": "Sharpedonita",
|
||||||
"SLOWBRONITE": "Slowbronite",
|
"SLOWBRONITE": "Slowbronita",
|
||||||
"STEELIXITE": "Steelixite",
|
"STEELIXITE": "Steelixita",
|
||||||
"SWAMPERTITE": "Swampertite",
|
"SWAMPERTITE": "Swampertita",
|
||||||
"TYRANITARITE": "Tyranitarite",
|
"TYRANITARITE": "Tyranitarita",
|
||||||
"VENUSAURITE": "Venusaurite",
|
"VENUSAURITE": "Venusaurita",
|
||||||
|
|
||||||
"BLUE_ORB": "Blue Orb",
|
"BLUE_ORB": "Orbe Azul",
|
||||||
"RED_ORB": "Red Orb",
|
"RED_ORB": "Orbe Vermelha",
|
||||||
"SHARP_METEORITE": "Sharp Meteorite",
|
"SHARP_METEORITE": "Meteorito Afiado",
|
||||||
"HARD_METEORITE": "Hard Meteorite",
|
"HARD_METEORITE": "Meteorito Duro",
|
||||||
"SMOOTH_METEORITE": "Smooth Meteorite",
|
"SMOOTH_METEORITE": " Meteorito Liso",
|
||||||
"ADAMANT_CRYSTAL": "Adamant Crystal",
|
"ADAMANT_CRYSTAL": "Cristal Adamante",
|
||||||
"LUSTROUS_ORB": "Lustrous Orb",
|
"LUSTROUS_ORB": "Orbe Pérola",
|
||||||
"GRISEOUS_CORE": "Griseous Core",
|
"GRISEOUS_CORE": "Núcleo Platinado",
|
||||||
"REVEAL_GLASS": "Reveal Glass",
|
"REVEAL_GLASS": "Espelho da Verdade",
|
||||||
"GRACIDEA": "Gracidea",
|
"GRACIDEA": "Gracídea",
|
||||||
"MAX_MUSHROOMS": "Max Mushrooms",
|
"MAX_MUSHROOMS": "Cogumax",
|
||||||
"DARK_STONE": "Dark Stone",
|
"DARK_STONE": "Pedra das Trevas",
|
||||||
"LIGHT_STONE": "Light Stone",
|
"LIGHT_STONE": "Pedra da Luz",
|
||||||
"PRISON_BOTTLE": "Prison Bottle",
|
"PRISON_BOTTLE": "Garrafa Prisão",
|
||||||
"N_LUNARIZER": "N Lunarizer",
|
"N_LUNARIZER": "Lunarizador N",
|
||||||
"N_SOLARIZER": "N Solarizer",
|
"N_SOLARIZER": "Solarizador N",
|
||||||
"RUSTED_SWORD": "Rusted Sword",
|
"RUSTED_SWORD": "Espada Enferrujada",
|
||||||
"RUSTED_SHIELD": "Rusted Shield",
|
"RUSTED_SHIELD": "Escudo Enferrujado",
|
||||||
"ICY_REINS_OF_UNITY": "Icy Reins Of Unity",
|
"ICY_REINS_OF_UNITY": "Rédeas de Gelo da União",
|
||||||
"SHADOW_REINS_OF_UNITY": "Shadow Reins Of Unity",
|
"SHADOW_REINS_OF_UNITY": "Rédeas Sombrias da União",
|
||||||
"WELLSPRING_MASK": "Wellspring Mask",
|
"WELLSPRING_MASK": "Máscara Nascente",
|
||||||
"HEARTHFLAME_MASK": "Hearthflame Mask",
|
"HEARTHFLAME_MASK": "Máscara Fornalha",
|
||||||
"CORNERSTONE_MASK": "Cornerstone Mask",
|
"CORNERSTONE_MASK": "Máscara Alicerce",
|
||||||
"SHOCK_DRIVE": "Shock Drive",
|
"SHOCK_DRIVE": "MagneDisco",
|
||||||
"BURN_DRIVE": "Burn Drive",
|
"BURN_DRIVE": "IgneDisco",
|
||||||
"CHILL_DRIVE": "Chill Drive",
|
"CHILL_DRIVE": "CrioDisco",
|
||||||
"DOUSE_DRIVE": "Douse Drive",
|
"DOUSE_DRIVE": "HidroDisco",
|
||||||
},
|
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Unknown",
|
|
||||||
"NORMAL": "Normal",
|
|
||||||
"FIGHTING": "Fighting",
|
|
||||||
"FLYING": "Flying",
|
|
||||||
"POISON": "Poison",
|
|
||||||
"GROUND": "Ground",
|
|
||||||
"ROCK": "Rock",
|
|
||||||
"BUG": "Bug",
|
|
||||||
"GHOST": "Ghost",
|
|
||||||
"STEEL": "Steel",
|
|
||||||
"FIRE": "Fire",
|
|
||||||
"WATER": "Water",
|
|
||||||
"GRASS": "Grass",
|
|
||||||
"ELECTRIC": "Electric",
|
|
||||||
"PSYCHIC": "Psychic",
|
|
||||||
"ICE": "Ice",
|
|
||||||
"DRAGON": "Dragon",
|
|
||||||
"DARK": "Dark",
|
|
||||||
"FAIRY": "Fairy",
|
|
||||||
"STELLAR": "Stellar",
|
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
@ -3583,7 +3583,7 @@ export const move: MoveTranslationEntries = {
|
|||||||
},
|
},
|
||||||
"revivalBlessing": {
|
"revivalBlessing": {
|
||||||
name: "Revival Blessing",
|
name: "Revival Blessing",
|
||||||
effect: "O usuário concede uma bênção amorosa, revivendo um Pokémon da equipe que tenha desmaiado e restaurando metade do máximo de PS desse Pokémon."
|
effect: "O usuário concede uma bênção amorosa, reanimando um Pokémon da equipe que tenha desmaiado e restaurando metade do máximo de PS desse Pokémon."
|
||||||
},
|
},
|
||||||
"saltCure": {
|
"saltCure": {
|
||||||
name: "Salt Cure",
|
name: "Salt Cure",
|
||||||
|
@ -4,7 +4,7 @@ export const pokeball: SimpleTranslationEntries = {
|
|||||||
"pokeBall": "Poké Bola",
|
"pokeBall": "Poké Bola",
|
||||||
"greatBall": "Grande Bola",
|
"greatBall": "Grande Bola",
|
||||||
"ultraBall": "Ultra Bola",
|
"ultraBall": "Ultra Bola",
|
||||||
"rogueBall": "Rogue Bola",
|
"rogueBall": "Bola Rogue",
|
||||||
"masterBall": "Master Bola",
|
"masterBall": "Bola Mestra",
|
||||||
"luxuryBall": "Bola de Luxo",
|
"luxuryBall": "Bola Luxo",
|
||||||
} as const;
|
} as const;
|
41
src/locales/pt_BR/pokemon-info.ts
Normal file
41
src/locales/pt_BR/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "PS",
|
||||||
|
"HPshortened": "PS",
|
||||||
|
"ATK": "Ataque",
|
||||||
|
"ATKshortened": "Ata",
|
||||||
|
"DEF": "Defesa",
|
||||||
|
"DEFshortened": "Def",
|
||||||
|
"SPATK": "At. Esp.",
|
||||||
|
"SPATKshortened": "AtEsp",
|
||||||
|
"SPDEF": "Def. Esp.",
|
||||||
|
"SPDEFshortened": "DefEsp",
|
||||||
|
"SPD": "Veloc.",
|
||||||
|
"SPDshortened": "Veloc."
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Desconhecido",
|
||||||
|
"NORMAL": "Normal",
|
||||||
|
"FIGHTING": "Lutador",
|
||||||
|
"FLYING": "Voador",
|
||||||
|
"POISON": "Veneno",
|
||||||
|
"GROUND": "Terra",
|
||||||
|
"ROCK": "Pedra",
|
||||||
|
"BUG": "Inseto",
|
||||||
|
"GHOST": "Fantasma",
|
||||||
|
"STEEL": "Aço",
|
||||||
|
"FIRE": "Fogo",
|
||||||
|
"WATER": "Água",
|
||||||
|
"GRASS": "Grama",
|
||||||
|
"ELECTRIC": "Elétrico",
|
||||||
|
"PSYCHIC": "Psíquico",
|
||||||
|
"ICE": "Gelo",
|
||||||
|
"DRAGON": "Dragão",
|
||||||
|
"DARK": "Sombrio",
|
||||||
|
"FAIRY": "Fada",
|
||||||
|
"STELLAR": "Estelar"
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "PS",
|
|
||||||
"HPshortened": "PS",
|
|
||||||
"ATK": "Ataque",
|
|
||||||
"ATKshortened": "Ata",
|
|
||||||
"DEF": "Defesa",
|
|
||||||
"DEFshortened": "Def",
|
|
||||||
"SPATK": "At. Esp.",
|
|
||||||
"SPATKshortened": "AtEsp",
|
|
||||||
"SPDEF": "Def. Esp.",
|
|
||||||
"SPDEFshortened": "DefEsp",
|
|
||||||
"SPD": "Veloc.",
|
|
||||||
"SPDshortened": "Veloc."
|
|
||||||
} as const;
|
|
37
src/locales/pt_BR/splash-messages.ts
Normal file
37
src/locales/pt_BR/splash-messages.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const splashMessages: SimpleTranslationEntries = {
|
||||||
|
"battlesWon": "Batalhas Ganhas!",
|
||||||
|
"joinTheDiscord": "Junte-se ao Discord!",
|
||||||
|
"infiniteLevels": "Níveis Infinitos!",
|
||||||
|
"everythingStacks": "Tudo Acumula!",
|
||||||
|
"optionalSaveScumming": "Você Pode Dar F5!",
|
||||||
|
"biomes": "35 Biomas!",
|
||||||
|
"openSource": "Código Aberto!",
|
||||||
|
"playWithSpeed": "Jogue na Velocidade 5x!",
|
||||||
|
"liveBugTesting": "Testamos os Bugs Ao Vivo!",
|
||||||
|
"heavyInfluence": "Grande Influência de RoR2!",
|
||||||
|
"pokemonRiskAndPokemonRain": "Pokémon Risk e Pokémon Rain!",
|
||||||
|
"nowWithMoreSalt": "O Choro é Livre!",
|
||||||
|
"infiniteFusionAtHome": "Infinite Fusion da Shopee!",
|
||||||
|
"brokenEggMoves": "Mov. de Ovo Apelões!",
|
||||||
|
"magnificent": "Magnífico!",
|
||||||
|
"mubstitute": "Mubstituto!",
|
||||||
|
"thatsCrazy": "Que Doidera!",
|
||||||
|
"oranceJuice": "Suco de Laranja!",
|
||||||
|
"questionableBalancing": "Balanceamento Questionável!",
|
||||||
|
"coolShaders": "Shader Maneiros!",
|
||||||
|
"aiFree": "Livre de IA!",
|
||||||
|
"suddenDifficultySpikes": "Ficou Difícil do Nada!",
|
||||||
|
"basedOnAnUnfinishedFlashGame": "Baseado num Jogo Online Inacabado!",
|
||||||
|
"moreAddictiveThanIntended": "Mais Viciante do que Planejado!",
|
||||||
|
"mostlyConsistentSeeds": "Consistente (na Maioria das Vezes)!",
|
||||||
|
"achievementPointsDontDoAnything": "Pontos de Conquista Não Fazem Nada!",
|
||||||
|
"youDoNotStartAtLevel": "Você Não Começa no Nível 2000!",
|
||||||
|
"dontTalkAboutTheManaphyEggIncident": "Não Fale do Incidente do Ovo de Manaphy!",
|
||||||
|
"alsoTryPokengine": "Também Jogue Pokéngine!",
|
||||||
|
"alsoTryEmeraldRogue": "Também Jogue Emerald Rogue!",
|
||||||
|
"alsoTryRadicalRed": "Também Jogue Radical Red!",
|
||||||
|
"eeveeExpo": "Eevee Expo!",
|
||||||
|
"ynoproject": "YNOproject!",
|
||||||
|
} as const;
|
@ -16,10 +16,10 @@ export const titles: SimpleTranslationEntries = {
|
|||||||
export const trainerClasses: SimpleTranslationEntries = {
|
export const trainerClasses: SimpleTranslationEntries = {
|
||||||
"ace_trainer": "Trinador Ás",
|
"ace_trainer": "Trinador Ás",
|
||||||
"ace_trainer_female": "Trinadora Ás",
|
"ace_trainer_female": "Trinadora Ás",
|
||||||
"ace_duo": "Ace Duo",
|
"ace_duo": "Dupla Ás",
|
||||||
"artist": "Artista",
|
"artist": "Artista",
|
||||||
"artist_female": "Artista",
|
"artist_female": "Artista",
|
||||||
"backpackers": "Backpackers",
|
"backpackers": "Mochileiros",
|
||||||
"backers": "Torcedores",
|
"backers": "Torcedores",
|
||||||
"backpacker": "Mochileiro",
|
"backpacker": "Mochileiro",
|
||||||
"backpacker_female": "Mochileira",
|
"backpacker_female": "Mochileira",
|
||||||
@ -31,36 +31,36 @@ export const trainerClasses: SimpleTranslationEntries = {
|
|||||||
"black_belt": "Faixa Preta",
|
"black_belt": "Faixa Preta",
|
||||||
"breeder": "Criador",
|
"breeder": "Criador",
|
||||||
"breeder_female": "Criadora",
|
"breeder_female": "Criadora",
|
||||||
"breeders": "Breeders",
|
"breeders": "Criadores",
|
||||||
"clerk": "Funcionário",
|
"clerk": "Funcionário",
|
||||||
"clerk_female": "Funcionária",
|
"clerk_female": "Funcionária",
|
||||||
"colleagues": "Colleagues",
|
"colleagues": "Funcionários",
|
||||||
"crush_kin": "Crush Kin",
|
"crush_kin": "Casal Lutador",
|
||||||
"cyclist": "Ciclista",
|
"cyclist": "Ciclista",
|
||||||
"cyclist_female": "Ciclista",
|
"cyclist_female": "Ciclista",
|
||||||
"cyclists": "Cyclists",
|
"cyclists": "Ciclistas",
|
||||||
"dancer": "Dançarino",
|
"dancer": "Dançarino",
|
||||||
"dancer_female": "Dançarina",
|
"dancer_female": "Dançarina",
|
||||||
"depot_agent": "Ferroviário",
|
"depot_agent": "Ferroviário",
|
||||||
"doctor": "Doutor",
|
"doctor": "Doutor",
|
||||||
"doctor_female": "Doutora",
|
"doctor_female": "Doutora",
|
||||||
"fisherman": "Pescador",
|
"fishermen": "Pescador",
|
||||||
"fisherman_female": "Pescadora",
|
"fishermen_female": "Pescadora",
|
||||||
"gentleman": "Gentleman",
|
"gentleman": "Cavalheiro",
|
||||||
"guitarist": "Guitarrista",
|
"guitarist": "Guitarrista",
|
||||||
"guitarist_female": "Guitarrista",
|
"guitarist_female": "Guitarrista",
|
||||||
"harlequin": "Arlequim",
|
"harlequin": "Arlequim",
|
||||||
"hiker": "Montanhista",
|
"hiker": "Montanhista",
|
||||||
"hooligans": "Bandoleiro",
|
"hooligans": "Bandoleiro",
|
||||||
"hoopster": "Jogador de basquete",
|
"hoopster": "Jogador de Basquete",
|
||||||
"infielder": "Jogador de baseball",
|
"infielder": "Jogador de Baseball",
|
||||||
"janitor": "Faxineiro",
|
"janitor": "Faxineiro",
|
||||||
"lady": "Dama",
|
"lady": "Dama",
|
||||||
"lass": "Senhorita",
|
"lass": "Senhorita",
|
||||||
"linebacker": "Zagueiro",
|
"linebacker": "Zagueiro",
|
||||||
"maid": "Doméstica",
|
"maid": "Doméstica",
|
||||||
"madame": "Madame",
|
"madame": "Madame",
|
||||||
"medical_team": "Medical Team",
|
"medical_team": "Equipe Médica",
|
||||||
"musician": "Músico",
|
"musician": "Músico",
|
||||||
"hex_maniac": "Ocultista",
|
"hex_maniac": "Ocultista",
|
||||||
"nurse": "Enfermeira",
|
"nurse": "Enfermeira",
|
||||||
@ -68,48 +68,48 @@ export const trainerClasses: SimpleTranslationEntries = {
|
|||||||
"officer": "Policial",
|
"officer": "Policial",
|
||||||
"parasol_lady": "Moça de Sombrinha",
|
"parasol_lady": "Moça de Sombrinha",
|
||||||
"pilot": "Piloto",
|
"pilot": "Piloto",
|
||||||
"pokefan": "Pokefã",
|
"poké_fan": "Pokefã",
|
||||||
"pokefan_family": "Poké Fan Family",
|
"poké_fan_family": "Família Pokefã",
|
||||||
"preschooler": "Menino do Prezinho",
|
"preschooler": "Menino do Prezinho",
|
||||||
"preschooler_female": "Menina do Prezinho",
|
"preschooler_female": "Menina do Prezinho",
|
||||||
"preschoolers": "Preschoolers",
|
"preschoolers": "Alunos do Prezinho",
|
||||||
"psychic": "Médium",
|
"psychic": "Médium",
|
||||||
"psychic_female": "Médium",
|
"psychic_female": "Médium",
|
||||||
"psychics": "Psychics",
|
"psychics": "Médiuns",
|
||||||
"pokémon_ranger": "Pokémon Ranger",
|
"pokémon_ranger": "Guarda Pokémon",
|
||||||
"pokémon_rangers": "Pokémon Ranger",
|
"pokémon_rangers": "Guardas Pokémon",
|
||||||
"ranger": "Guarda",
|
"ranger": "Guarda",
|
||||||
"restaurant_staff": "Restaurant Staff",
|
"restaurant_staff": "Equipe do Restaurante",
|
||||||
"rich": "Rich",
|
"rich": "Burguês",
|
||||||
"rich_female": "Rich",
|
"rich_female": "Burguesa",
|
||||||
"rich_boy": "Rich Boy",
|
"rich_boy": "Riquinho",
|
||||||
"rich_couple": "Rich Couple",
|
"rich_couple": "Casal Burguês",
|
||||||
"rich_kid": "Rich Kid",
|
"rich_kid": "Garoto Rico",
|
||||||
"rich_kid_female": "Rich Kid",
|
"rich_kid_female": "Garota Rica",
|
||||||
"rich_kids": "Rich Kids",
|
"rich_kids": "Garotos Ricos",
|
||||||
"roughneck": "Arruaceiro",
|
"roughneck": "Arruaceiro",
|
||||||
"scientist": "Cientista",
|
"scientist": "Cientista",
|
||||||
"scientist_female": "Cientista",
|
"scientist_female": "Cientista",
|
||||||
"scientists": "Scientists",
|
"scientists": "Cientistas",
|
||||||
"smasher": "Tenista",
|
"smasher": "Tenista",
|
||||||
"snow_worker": "Operário da Neve",
|
"snow_worker": "Operário da Neve",
|
||||||
"snow_worker_female": "Operária da Neve",
|
"snow_worker_female": "Operária da Neve",
|
||||||
"striker": "Atacante",
|
"striker": "Atacante",
|
||||||
"school_kid": "Estudante",
|
"school_kid": "Estudante",
|
||||||
"school_kid_female": "Estudante",
|
"school_kid_female": "Estudante",
|
||||||
"school_kids": "School Kids",
|
"school_kids": "Estudantes",
|
||||||
"swimmer": "Nadador",
|
"swimmer": "Nadador",
|
||||||
"swimmer_female": "Nadadora",
|
"swimmer_female": "Nadadora",
|
||||||
"swimmers": "Swimmers",
|
"swimmers": "Nadadores",
|
||||||
"twins": "Gêmeos",
|
"twins": "Gêmeos",
|
||||||
"veteran": "Veterano",
|
"veteran": "Veterano",
|
||||||
"veteran_female": "Veterana",
|
"veteran_female": "Veterana",
|
||||||
"veteran_duo": "Veteran Duo",
|
"veteran_duo": "Dupla Veterana",
|
||||||
"waiter": "Garçom",
|
"waiter": "Garçom",
|
||||||
"waitress": "Garçonete",
|
"waitress": "Garçonete",
|
||||||
"worker": "Operário",
|
"worker": "Operário",
|
||||||
"worker_female": "Operária",
|
"worker_female": "Operária",
|
||||||
"workers": "Workers",
|
"workers": "Operários",
|
||||||
"youngster": "Jovem",
|
"youngster": "Jovem",
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
|
10
src/locales/zh_CN/battle-message-ui-handler.ts
Normal file
10
src/locales/zh_CN/battle-message-ui-handler.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||||||
|
"ivBest": "Best",
|
||||||
|
"ivFantastic": "Fantastic",
|
||||||
|
"ivVeryGood": "Very Good",
|
||||||
|
"ivPrettyGood": "Pretty Good",
|
||||||
|
"ivDecent": "Decent",
|
||||||
|
"ivNoGood": "No Good",
|
||||||
|
} as const;
|
@ -1,48 +1,48 @@
|
|||||||
import { BerryTranslationEntries } from "#app/plugins/i18n";
|
import { BerryTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
export const berry: BerryTranslationEntries = {
|
export const berry: BerryTranslationEntries = {
|
||||||
"SITRUS": {
|
"SITRUS": {
|
||||||
name: "Sitrus Berry",
|
name: "文柚果",
|
||||||
effect: "Restores 25% HP if HP is below 50%",
|
effect: "HP低于50%时,回复最大HP的25%",
|
||||||
},
|
},
|
||||||
"LUM": {
|
"LUM": {
|
||||||
name: "Lum Berry",
|
name: "木子果",
|
||||||
effect: "Cures any non-volatile status condition and confusion",
|
effect: "治愈任何异常状态和混乱状态",
|
||||||
},
|
},
|
||||||
"ENIGMA": {
|
"ENIGMA": {
|
||||||
name: "Enigma Berry",
|
name: "谜芝果",
|
||||||
effect: "Restores 25% HP if hit by a super effective move",
|
effect: "受到效果绝佳的招式攻击时,回复25%最大HP",
|
||||||
},
|
},
|
||||||
"LIECHI": {
|
"LIECHI": {
|
||||||
name: "Liechi Berry",
|
name: "枝荔果",
|
||||||
effect: "Raises Attack if HP is below 25%",
|
effect: "HP低于25%时,攻击提升一个等级",
|
||||||
},
|
},
|
||||||
"GANLON": {
|
"GANLON": {
|
||||||
name: "Ganlon Berry",
|
name: "龙睛果",
|
||||||
effect: "Raises Defense if HP is below 25%",
|
effect: "HP低于25%时,防御提升一个等级",
|
||||||
},
|
},
|
||||||
"PETAYA": {
|
"PETAYA": {
|
||||||
name: "Petaya Berry",
|
name: "龙火果",
|
||||||
effect: "Raises Sp. Atk if HP is below 25%",
|
effect: "HP低于25%时,特攻提升一个等级",
|
||||||
},
|
},
|
||||||
"APICOT": {
|
"APICOT": {
|
||||||
name: "Apicot Berry",
|
name: "杏仔果",
|
||||||
effect: "Raises Sp. Def if HP is below 25%",
|
effect: "HP低于25%时,特防提升一个等级",
|
||||||
},
|
},
|
||||||
"SALAC": {
|
"SALAC": {
|
||||||
name: "Salac Berry",
|
name: "沙鳞果",
|
||||||
effect: "Raises Speed if HP is below 25%",
|
effect: "HP低于25%时,速度提升一个等级",
|
||||||
},
|
},
|
||||||
"LANSAT": {
|
"LANSAT": {
|
||||||
name: "Lansat Berry",
|
name: "兰萨果",
|
||||||
effect: "Raises critical hit ratio if HP is below 25%",
|
effect: "HP低于25%时,击中要害率提升两个等级",
|
||||||
},
|
},
|
||||||
"STARF": {
|
"STARF": {
|
||||||
name: "Starf Berry",
|
name: "星桃果",
|
||||||
effect: "Sharply raises a random stat if HP is below 25%",
|
effect: "HP低于25%时,提高随机一项能力两个等级",
|
||||||
},
|
},
|
||||||
"LEPPA": {
|
"LEPPA": {
|
||||||
name: "Leppa Berry",
|
name: "苹野果",
|
||||||
effect: "Restores 10 PP to a move if its PP reaches 0",
|
effect: "有招式的PP降到0时,恢复该招式10PP",
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
@ -12,12 +12,13 @@ import { move } from "./move";
|
|||||||
import { nature } from "./nature";
|
import { nature } from "./nature";
|
||||||
import { pokeball } from "./pokeball";
|
import { pokeball } from "./pokeball";
|
||||||
import { pokemon } from "./pokemon";
|
import { pokemon } from "./pokemon";
|
||||||
import { pokemonStat } from "./pokemon-stat";
|
import { pokemonInfo } from "./pokemon-info";
|
||||||
// import { splashMessages } from "./splash-messages";
|
// import { splashMessages } from "./splash-messages";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
||||||
import { tutorial } from "./tutorial";
|
import { tutorial } from "./tutorial";
|
||||||
import { weather } from "./weather";
|
import { weather } from "./weather";
|
||||||
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
||||||
import { berry } from "./berry";
|
import { berry } from "./berry";
|
||||||
|
|
||||||
|
|
||||||
@ -36,7 +37,7 @@ export const zhCnConfig = {
|
|||||||
nature: nature,
|
nature: nature,
|
||||||
pokeball: pokeball,
|
pokeball: pokeball,
|
||||||
pokemon: pokemon,
|
pokemon: pokemon,
|
||||||
pokemonStat: pokemonStat,
|
pokemonInfo: pokemonInfo,
|
||||||
// splashMessages: splashMessages,
|
// splashMessages: splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler: starterSelectUiHandler,
|
||||||
titles: titles,
|
titles: titles,
|
||||||
@ -44,5 +45,6 @@ export const zhCnConfig = {
|
|||||||
trainerNames: trainerNames,
|
trainerNames: trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial: tutorial,
|
||||||
weather: weather,
|
weather: weather,
|
||||||
|
battleMessageUiHandler: battleMessageUiHandler,
|
||||||
berry: berry,
|
berry: berry,
|
||||||
}
|
}
|
@ -384,26 +384,4 @@ export const modifierType: ModifierTypeTranslationEntries = {
|
|||||||
"CHILL_DRIVE": "冰冻卡带",
|
"CHILL_DRIVE": "冰冻卡带",
|
||||||
"DOUSE_DRIVE": "水流卡带",
|
"DOUSE_DRIVE": "水流卡带",
|
||||||
},
|
},
|
||||||
TeraType: {
|
|
||||||
"UNKNOWN": "Unknown",
|
|
||||||
"NORMAL": "一般",
|
|
||||||
"FIGHTING": "格斗",
|
|
||||||
"FLYING": "飞行",
|
|
||||||
"POISON": "毒",
|
|
||||||
"GROUND": "地面",
|
|
||||||
"ROCK": "岩石",
|
|
||||||
"BUG": "虫",
|
|
||||||
"GHOST": "幽灵",
|
|
||||||
"STEEL": "钢",
|
|
||||||
"FIRE": "火",
|
|
||||||
"WATER": "水",
|
|
||||||
"GRASS": "草",
|
|
||||||
"ELECTRIC": "电",
|
|
||||||
"PSYCHIC": "超能力",
|
|
||||||
"ICE": "冰",
|
|
||||||
"DRAGON": "龙",
|
|
||||||
"DARK": "恶",
|
|
||||||
"FAIRY": "妖精",
|
|
||||||
"STELLAR": "星晶",
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
41
src/locales/zh_CN/pokemon-info.ts
Normal file
41
src/locales/zh_CN/pokemon-info.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { PokemonInfoTranslationEntries } from "#app/plugins/i18n";
|
||||||
|
|
||||||
|
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
||||||
|
Stat: {
|
||||||
|
"HP": "最大HP",
|
||||||
|
"HPshortened": "最大HP",
|
||||||
|
"ATK": "攻击",
|
||||||
|
"ATKshortened": "攻击",
|
||||||
|
"DEF": "防御",
|
||||||
|
"DEFshortened": "防御",
|
||||||
|
"SPATK": "特攻",
|
||||||
|
"SPATKshortened": "特攻",
|
||||||
|
"SPDEF": "特防",
|
||||||
|
"SPDEFshortened": "特防",
|
||||||
|
"SPD": "速度",
|
||||||
|
"SPDshortened": "速度"
|
||||||
|
},
|
||||||
|
|
||||||
|
Type: {
|
||||||
|
"UNKNOWN": "Unknown",
|
||||||
|
"NORMAL": "一般",
|
||||||
|
"FIGHTING": "格斗",
|
||||||
|
"FLYING": "飞行",
|
||||||
|
"POISON": "毒",
|
||||||
|
"GROUND": "地面",
|
||||||
|
"ROCK": "岩石",
|
||||||
|
"BUG": "虫",
|
||||||
|
"GHOST": "幽灵",
|
||||||
|
"STEEL": "钢",
|
||||||
|
"FIRE": "火",
|
||||||
|
"WATER": "水",
|
||||||
|
"GRASS": "草",
|
||||||
|
"ELECTRIC": "电",
|
||||||
|
"PSYCHIC": "超能力",
|
||||||
|
"ICE": "冰",
|
||||||
|
"DRAGON": "龙",
|
||||||
|
"DARK": "恶",
|
||||||
|
"FAIRY": "妖精",
|
||||||
|
"STELLAR": "星晶",
|
||||||
|
},
|
||||||
|
} as const;
|
@ -1,16 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
||||||
|
|
||||||
export const pokemonStat: SimpleTranslationEntries = {
|
|
||||||
"HP": "最大HP",
|
|
||||||
"HPshortened": "最大HP",
|
|
||||||
"ATK": "攻击",
|
|
||||||
"ATKshortened": "攻击",
|
|
||||||
"DEF": "防御",
|
|
||||||
"DEFshortened": "防御",
|
|
||||||
"SPATK": "特攻",
|
|
||||||
"SPATKshortened": "特攻",
|
|
||||||
"SPDEF": "特防",
|
|
||||||
"SPDEFshortened": "特防",
|
|
||||||
"SPD": "速度",
|
|
||||||
"SPDshortened": "速度"
|
|
||||||
} as const;
|
|
@ -511,7 +511,7 @@ export class AttackTypeBoosterModifierType extends PokemonHeldItemModifierType i
|
|||||||
|
|
||||||
getDescription(scene: BattleScene): string {
|
getDescription(scene: BattleScene): string {
|
||||||
// TODO: Need getTypeName?
|
// TODO: Need getTypeName?
|
||||||
return i18next.t(`modifierType:ModifierType.AttackTypeBoosterModifierType.description`, { moveType: Utils.toReadableString(Type[this.moveType]) });
|
return i18next.t(`modifierType:ModifierType.AttackTypeBoosterModifierType.description`, { moveType: i18next.t(`pokemonInfo:Type.${Type[this.moveType]}`) });
|
||||||
}
|
}
|
||||||
|
|
||||||
getPregenArgs(): any[] {
|
getPregenArgs(): any[] {
|
||||||
@ -898,11 +898,11 @@ export class TerastallizeModifierType extends PokemonHeldItemModifierType implem
|
|||||||
}
|
}
|
||||||
|
|
||||||
get name(): string {
|
get name(): string {
|
||||||
return i18next.t(`modifierType:ModifierType.TerastallizeModifierType.name`, { teraType: i18next.t(`modifierType:TeraType.${Type[this.teraType]}`) });
|
return i18next.t(`modifierType:ModifierType.TerastallizeModifierType.name`, { teraType: i18next.t(`pokemonInfo:Type.${Type[this.teraType]}`) });
|
||||||
}
|
}
|
||||||
|
|
||||||
getDescription(scene: BattleScene): string {
|
getDescription(scene: BattleScene): string {
|
||||||
return i18next.t(`modifierType:ModifierType.TerastallizeModifierType.description`, { teraType: i18next.t(`modifierType:TeraType.${Type[this.teraType]}`) });
|
return i18next.t(`modifierType:ModifierType.TerastallizeModifierType.description`, { teraType: i18next.t(`pokemonInfo:Type.${Type[this.teraType]}`) });
|
||||||
}
|
}
|
||||||
|
|
||||||
getPregenArgs(): any[] {
|
getPregenArgs(): any[] {
|
||||||
@ -1194,11 +1194,11 @@ const modifierPool: ModifierPool = {
|
|||||||
return thresholdPartyMemberCount;
|
return thresholdPartyMemberCount;
|
||||||
}, 3),
|
}, 3),
|
||||||
new WeightedModifierType(modifierTypes.ETHER, (party: Pokemon[]) => {
|
new WeightedModifierType(modifierTypes.ETHER, (party: Pokemon[]) => {
|
||||||
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMove().pp - m.ppUsed) <= 5).length).length, 3);
|
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMovePp() - m.ppUsed) <= 5).length).length, 3);
|
||||||
return thresholdPartyMemberCount * 3;
|
return thresholdPartyMemberCount * 3;
|
||||||
}, 9),
|
}, 9),
|
||||||
new WeightedModifierType(modifierTypes.MAX_ETHER, (party: Pokemon[]) => {
|
new WeightedModifierType(modifierTypes.MAX_ETHER, (party: Pokemon[]) => {
|
||||||
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMove().pp - m.ppUsed) <= 5).length).length, 3);
|
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMovePp() - m.ppUsed) <= 5).length).length, 3);
|
||||||
return thresholdPartyMemberCount;
|
return thresholdPartyMemberCount;
|
||||||
}, 3),
|
}, 3),
|
||||||
new WeightedModifierType(modifierTypes.LURE, 2),
|
new WeightedModifierType(modifierTypes.LURE, 2),
|
||||||
@ -1237,11 +1237,11 @@ const modifierPool: ModifierPool = {
|
|||||||
return thresholdPartyMemberCount;
|
return thresholdPartyMemberCount;
|
||||||
}, 3),
|
}, 3),
|
||||||
new WeightedModifierType(modifierTypes.ELIXIR, (party: Pokemon[]) => {
|
new WeightedModifierType(modifierTypes.ELIXIR, (party: Pokemon[]) => {
|
||||||
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMove().pp - m.ppUsed) <= 5).length).length, 3);
|
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMovePp() - m.ppUsed) <= 5).length).length, 3);
|
||||||
return thresholdPartyMemberCount * 3;
|
return thresholdPartyMemberCount * 3;
|
||||||
}, 9),
|
}, 9),
|
||||||
new WeightedModifierType(modifierTypes.MAX_ELIXIR, (party: Pokemon[]) => {
|
new WeightedModifierType(modifierTypes.MAX_ELIXIR, (party: Pokemon[]) => {
|
||||||
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMove().pp - m.ppUsed) <= 5).length).length, 3);
|
const thresholdPartyMemberCount = Math.min(party.filter(p => p.hp && p.getMoveset().filter(m => (m.getMovePp() - m.ppUsed) <= 5).length).length, 3);
|
||||||
return thresholdPartyMemberCount;
|
return thresholdPartyMemberCount;
|
||||||
}, 3),
|
}, 3),
|
||||||
new WeightedModifierType(modifierTypes.DIRE_HIT, 4),
|
new WeightedModifierType(modifierTypes.DIRE_HIT, 4),
|
||||||
|
@ -3545,10 +3545,12 @@ export class GameOverModifierRewardPhase extends ModifierRewardPhase {
|
|||||||
this.scene.addModifier(newModifier).then(() => {
|
this.scene.addModifier(newModifier).then(() => {
|
||||||
this.scene.playSound('level_up_fanfare');
|
this.scene.playSound('level_up_fanfare');
|
||||||
this.scene.ui.setMode(Mode.MESSAGE);
|
this.scene.ui.setMode(Mode.MESSAGE);
|
||||||
|
this.scene.ui.fadeIn(250).then(() => {
|
||||||
this.scene.ui.showText(`You received\n${newModifier.type.name}!`, null, () => {
|
this.scene.ui.showText(`You received\n${newModifier.type.name}!`, null, () => {
|
||||||
this.scene.time.delayedCall(1500, () => this.scene.arenaBg.setVisible(true));
|
this.scene.time.delayedCall(1500, () => this.scene.arenaBg.setVisible(true));
|
||||||
resolve();
|
resolve();
|
||||||
}, null, true, 1500);
|
}, null, true, 1500);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,10 @@ export interface ModifierTypeTranslationEntries {
|
|||||||
BaseStatBoosterItem: SimpleTranslationEntries,
|
BaseStatBoosterItem: SimpleTranslationEntries,
|
||||||
EvolutionItem: SimpleTranslationEntries,
|
EvolutionItem: SimpleTranslationEntries,
|
||||||
FormChangeItem: SimpleTranslationEntries,
|
FormChangeItem: SimpleTranslationEntries,
|
||||||
TeraType: SimpleTranslationEntries,
|
}
|
||||||
|
export interface PokemonInfoTranslationEntries {
|
||||||
|
Stat: SimpleTranslationEntries,
|
||||||
|
Type: SimpleTranslationEntries,
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface BerryTranslationEntry {
|
export interface BerryTranslationEntry {
|
||||||
@ -134,7 +137,7 @@ declare module 'i18next' {
|
|||||||
ability: AbilityTranslationEntries;
|
ability: AbilityTranslationEntries;
|
||||||
pokeball: SimpleTranslationEntries;
|
pokeball: SimpleTranslationEntries;
|
||||||
pokemon: SimpleTranslationEntries;
|
pokemon: SimpleTranslationEntries;
|
||||||
pokemonStat: SimpleTranslationEntries;
|
pokemonInfo: PokemonInfoTranslationEntries;
|
||||||
commandUiHandler: SimpleTranslationEntries;
|
commandUiHandler: SimpleTranslationEntries;
|
||||||
fightUiHandler: SimpleTranslationEntries;
|
fightUiHandler: SimpleTranslationEntries;
|
||||||
titles: SimpleTranslationEntries;
|
titles: SimpleTranslationEntries;
|
||||||
@ -148,6 +151,7 @@ declare module 'i18next' {
|
|||||||
egg: SimpleTranslationEntries;
|
egg: SimpleTranslationEntries;
|
||||||
weather: SimpleTranslationEntries;
|
weather: SimpleTranslationEntries;
|
||||||
modifierType: ModifierTypeTranslationEntries;
|
modifierType: ModifierTypeTranslationEntries;
|
||||||
|
battleMessageUiHandler: SimpleTranslationEntries;
|
||||||
berry: BerryTranslationEntries;
|
berry: BerryTranslationEntries;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -159,4 +163,4 @@ export function getIsInitialized(): boolean {
|
|||||||
return isInitialized;
|
return isInitialized;
|
||||||
}
|
}
|
||||||
|
|
||||||
let isInitialized = false;
|
let isInitialized = false;
|
||||||
|
@ -260,8 +260,23 @@ export default class BattleInfo extends Phaser.GameObjects.Container {
|
|||||||
if (!this.player) {
|
if (!this.player) {
|
||||||
const dexEntry = pokemon.scene.gameData.dexData[pokemon.species.speciesId];
|
const dexEntry = pokemon.scene.gameData.dexData[pokemon.species.speciesId];
|
||||||
this.ownedIcon.setVisible(!!dexEntry.caughtAttr);
|
this.ownedIcon.setVisible(!!dexEntry.caughtAttr);
|
||||||
const dexAttr = pokemon.getDexAttr();
|
const opponentPokemonDexAttr = pokemon.getDexAttr();
|
||||||
if ((dexEntry.caughtAttr & dexAttr) < dexAttr || !(pokemon.scene.gameData.starterData[pokemon.species.getRootSpeciesId()].abilityAttr & Math.pow(2, pokemon.abilityIndex)))
|
|
||||||
|
// Check if Player owns all genders and forms of the Pokemon
|
||||||
|
const missingDexAttrs = ((dexEntry.caughtAttr & opponentPokemonDexAttr) < opponentPokemonDexAttr);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the opposing Pokemon only has 1 normal ability and is using the hidden ability it should have the same behavior
|
||||||
|
* if it had 2 normal abilities. This code checks if that is the case and uses the correct opponent Pokemon abilityIndex (2)
|
||||||
|
* for calculations so it aligns with where the hidden ability is stored in the starter data's abilityAttr (4)
|
||||||
|
*/
|
||||||
|
const opponentPokemonOneNormalAbility = (pokemon.species.getAbilityCount() === 2);
|
||||||
|
const opponentPokemonAbilityIndex = (opponentPokemonOneNormalAbility && pokemon.abilityIndex === 1) ? 2 : pokemon.abilityIndex;
|
||||||
|
const opponentPokemonAbilityAttr = Math.pow(2, opponentPokemonAbilityIndex);
|
||||||
|
|
||||||
|
const rootFormHasHiddenAbility = pokemon.scene.gameData.starterData[pokemon.species.getRootSpeciesId()].abilityAttr & opponentPokemonAbilityAttr;
|
||||||
|
|
||||||
|
if (missingDexAttrs || !rootFormHasHiddenAbility)
|
||||||
this.ownedIcon.setTint(0x808080);
|
this.ownedIcon.setTint(0x808080);
|
||||||
|
|
||||||
if (this.boss)
|
if (this.boss)
|
||||||
|
@ -7,6 +7,7 @@ import { getStatName, Stat } from "../data/pokemon-stat";
|
|||||||
import { addWindow } from "./ui-theme";
|
import { addWindow } from "./ui-theme";
|
||||||
import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext";
|
import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext";
|
||||||
import {Button} from "../enums/buttons";
|
import {Button} from "../enums/buttons";
|
||||||
|
import i18next from '../plugins/i18n';
|
||||||
|
|
||||||
export default class BattleMessageUiHandler extends MessageUiHandler {
|
export default class BattleMessageUiHandler extends MessageUiHandler {
|
||||||
private levelUpStatsContainer: Phaser.GameObjects.Container;
|
private levelUpStatsContainer: Phaser.GameObjects.Container;
|
||||||
@ -234,20 +235,20 @@ export default class BattleMessageUiHandler extends MessageUiHandler {
|
|||||||
const textStyle: TextStyle = isBetter ? TextStyle.SUMMARY_GREEN : TextStyle.SUMMARY;
|
const textStyle: TextStyle = isBetter ? TextStyle.SUMMARY_GREEN : TextStyle.SUMMARY;
|
||||||
const color = getTextColor(textStyle, false, uiTheme);
|
const color = getTextColor(textStyle, false, uiTheme);
|
||||||
return `[color=${color}][shadow=${getTextColor(textStyle, true, uiTheme)}]${text}[/shadow][/color]`;
|
return `[color=${color}][shadow=${getTextColor(textStyle, true, uiTheme)}]${text}[/shadow][/color]`;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (value > 30)
|
if (value > 30)
|
||||||
return coloredText('Best', value > starterIvs[typeIv]);
|
return coloredText(i18next.t('battleMessageUiHandler:ivBest'), value > starterIvs[typeIv]);
|
||||||
if (value === 30)
|
if (value === 30)
|
||||||
return coloredText('Fantastic', value > starterIvs[typeIv]);
|
return coloredText(i18next.t('battleMessageUiHandler:ivFantastic'), value > starterIvs[typeIv]);
|
||||||
if (value > 20)
|
if (value > 20)
|
||||||
return coloredText('Very Good', value > starterIvs[typeIv]);
|
return coloredText(i18next.t('battleMessageUiHandler:ivVeryGood'), value > starterIvs[typeIv]);
|
||||||
if (value > 10)
|
if (value > 10)
|
||||||
return coloredText('Pretty Good', value > starterIvs[typeIv]);
|
return coloredText(i18next.t('battleMessageUiHandler:ivPrettyGood'), value > starterIvs[typeIv]);
|
||||||
if (value > 0)
|
if (value > 0)
|
||||||
return coloredText('Decent', value > starterIvs[typeIv]);
|
return coloredText(i18next.t('battleMessageUiHandler:ivDecent'), value > starterIvs[typeIv]);
|
||||||
|
|
||||||
return coloredText('No Good', value > starterIvs[typeIv]);
|
return coloredText(i18next.t('battleMessageUiHandler:ivNoGood'), value > starterIvs[typeIv]);
|
||||||
}
|
}
|
||||||
|
|
||||||
showNameText(name: string): void {
|
showNameText(name: string): void {
|
||||||
|
Loading…
Reference in New Issue
Block a user