mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 07:52:17 +02:00
Reorganized Substitute translation keys
This commit is contained in:
parent
dc1b002177
commit
3ca5453e48
@ -1843,7 +1843,7 @@ export class SubstituteTag extends BattlerTag {
|
|||||||
|
|
||||||
// Queue battle animation and message
|
// Queue battle animation and message
|
||||||
pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.SUBSTITUTE_ADD);
|
pokemon.scene.triggerPokemonBattleAnim(pokemon, PokemonAnimType.SUBSTITUTE_ADD);
|
||||||
pokemon.scene.queueMessage(i18next.t("battle:battlerTagsSubstituteOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }), 1500);
|
pokemon.scene.queueMessage(i18next.t("battlerTags:substituteOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }), 1500);
|
||||||
|
|
||||||
// Remove any trapping effects from the user
|
// Remove any trapping effects from the user
|
||||||
pokemon.findAndRemoveTags(tag => tag instanceof TrappedTag);
|
pokemon.findAndRemoveTags(tag => tag instanceof TrappedTag);
|
||||||
@ -1857,7 +1857,7 @@ export class SubstituteTag extends BattlerTag {
|
|||||||
} else {
|
} else {
|
||||||
this.sprite.destroy();
|
this.sprite.destroy();
|
||||||
}
|
}
|
||||||
pokemon.scene.queueMessage(i18next.t("battle:battlerTagsSubstituteOnRemove", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }));
|
pokemon.scene.queueMessage(i18next.t("battlerTags:substituteOnRemove", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }));
|
||||||
}
|
}
|
||||||
|
|
||||||
lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean {
|
lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean {
|
||||||
@ -1896,7 +1896,7 @@ export class SubstituteTag extends BattlerTag {
|
|||||||
const firstHit = (attacker.turnData.hitCount === attacker.turnData.hitsLeft);
|
const firstHit = (attacker.turnData.hitCount === attacker.turnData.hitsLeft);
|
||||||
|
|
||||||
if (firstHit && !move.canIgnoreSubstitute(attacker)) {
|
if (firstHit && !move.canIgnoreSubstitute(attacker)) {
|
||||||
pokemon.scene.queueMessage(i18next.t("battle:battlerTagsSubstituteOnHit", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }));
|
pokemon.scene.queueMessage(i18next.t("battlerTags:substituteOnHit", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!",
|
||||||
|
"substituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"unlockedSomething": "{{unlockedThing}} wurde freigeschaltet.",
|
"unlockedSomething": "{{unlockedThing}} wurde freigeschaltet.",
|
||||||
"congratulations": "Glückwunsch!",
|
"congratulations": "Glückwunsch!",
|
||||||
"beatModeFirstTime": "{{speciesName}} hat den {{gameMode}} Modus zum ersten Mal beendet! Du erhältst {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} hat den {{gameMode}} Modus zum ersten Mal beendet! Du erhältst {{newModifier}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "Ein Delegator von {{pokemonNameWithAffix}} ist erschienen!",
|
|
||||||
"battlerTagsSubstituteOnHit": "Der Delegator steckt den Schlag für {{pokemonNameWithAffix}} ein!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "Der Delegator von {{pokemonNameWithAffix}} hört auf zu wirken!"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} nimmt einen Teil seiner KP und legt einen Fluch auf {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} nimmt einen Teil seiner KP und legt einen Fluch auf {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} wurde durch den Fluch verletzt!",
|
"cursedLapse": "{{pokemonNameWithAffix}} wurde durch den Fluch verletzt!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
||||||
|
"substituteOnAdd": "Ein Delegator von {{pokemonNameWithAffix}} ist erschienen!",
|
||||||
|
"substituteOnHit": "Der Delegator steckt den Schlag für {{pokemonNameWithAffix}} ein!",
|
||||||
|
"substituteOnRemove": "Der Delegator von {{pokemonNameWithAffix}} hört auf zu wirken!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"congratulations": "Congratulations!",
|
"congratulations": "Congratulations!",
|
||||||
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
||||||
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!",
|
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!",
|
|
||||||
"battlerTagsSubstituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!",
|
||||||
|
"substituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"congratulations": "Congratulations!",
|
"congratulations": "Congratulations!",
|
||||||
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
||||||
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!",
|
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "¡{{pokemonNameWithAffix}} creó un sustituto!",
|
|
||||||
"battlerTagsSubstituteOnHit": "¡El sustituto recibe daño en lugar del {{pokemonNameWithAffix}}!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "¡El sustituto del {{pokemonNameWithAffix}} se debilitó!"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
||||||
|
"substituteOnAdd": "¡{{pokemonNameWithAffix}} creó un sustituto!",
|
||||||
|
"substituteOnHit": "¡El sustituto recibe daño en lugar del {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnRemove": "¡El sustituto del {{pokemonNameWithAffix}} se debilitó!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"unlockedSomething": "{{unlockedThing}}\na été débloqué.",
|
"unlockedSomething": "{{unlockedThing}}\na été débloqué.",
|
||||||
"congratulations": "Félicitations !",
|
"congratulations": "Félicitations !",
|
||||||
"beatModeFirstTime": "{{speciesName}} a battu le mode {{gameMode}} pour la première fois !\nVous avez reçu {{newModifier}} !",
|
"beatModeFirstTime": "{{speciesName}} a battu le mode {{gameMode}} pour la première fois !\nVous avez reçu {{newModifier}} !",
|
||||||
"battlerTagsSubstituteOnAdd": "{{pokemonNameWithAffix}}\ncrée un clone !",
|
|
||||||
"battlerTagsSubstituteOnHit": "Le clone subit les dégâts à la place\nde {{pokemonNameWithAffix}} !",
|
|
||||||
"battlerTagsSubstituteOnRemove": "Le clone de {{pokemonNameWithAffix}}\ndisparait…"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} sacrifie des PV\net lance une malédiction sur {{pokemonName}} !",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} sacrifie des PV\net lance une malédiction sur {{pokemonName}} !",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} est touché par la malédiction !",
|
"cursedLapse": "{{pokemonNameWithAffix}} est touché par la malédiction !",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} utilise\nla capacité Stockage {{stockpiledCount}} fois !",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} utilise\nla capacité Stockage {{stockpiledCount}} fois !",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}}\ncrée un clone !",
|
||||||
|
"substituteOnHit": "Le clone subit les dégâts à la place\nde {{pokemonNameWithAffix}} !",
|
||||||
|
"substituteOnRemove": "Le clone de {{pokemonNameWithAffix}}\ndisparait…",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"congratulations": "Congratulazioni!",
|
"congratulations": "Congratulazioni!",
|
||||||
"beatModeFirstTime": "{{speciesName}} ha completato la modalità {{gameMode}} per la prima volta!\nHai ricevuto {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} ha completato la modalità {{gameMode}} per la prima volta!\nHai ricevuto {{newModifier}}!",
|
||||||
"ppReduced": "I PP della mossa {{moveName}} di\n{{targetName}} sono stati ridotti di {{reduction}}!",
|
"ppReduced": "I PP della mossa {{moveName}} di\n{{targetName}} sono stati ridotti di {{reduction}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "Appare un sostituto di {{pokemonNameWithAffix}}!",
|
|
||||||
"battlerTagsSubstituteOnHit": "Il sostituto viene colpito al posto di {{pokemonNameWithAffix}}!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "Il sostituto di {{pokemonNameWithAffix}} svanisce!"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} ha sacrificato metà dei suoi PS per\nlanciare una maledizione su {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} ha sacrificato metà dei suoi PS per\nlanciare una maledizione su {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} subisce la maledizione!",
|
"cursedLapse": "{{pokemonNameWithAffix}} subisce la maledizione!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} ha usato Accumulo per la\n{{stockpiledCount}}ª volta!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} ha usato Accumulo per la\n{{stockpiledCount}}ª volta!",
|
||||||
|
"substituteOnAdd": "Appare un sostituto di {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnHit": "Il sostituto viene colpito al posto di {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnRemove": "Il sostituto di {{pokemonNameWithAffix}} svanisce!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}}は 自分の 体力を 削って\n{{pokemonName}}に のろいを かけた!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}}は 自分の 体力を 削って\n{{pokemonName}}に のろいを かけた!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!",
|
"cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}} put in a substitute!",
|
||||||
|
"substituteOnHit": "The substitute took damage for {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnRemove": "{{pokemonNameWithAffix}}'s substitute faded!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"congratulations": "축하합니다!",
|
"congratulations": "축하합니다!",
|
||||||
"beatModeFirstTime": "{{speciesName}}[[가]] {{gameMode}} 모드를 처음으로 클리어했다!\n{{newModifier}}[[를]] 손에 넣었다!",
|
"beatModeFirstTime": "{{speciesName}}[[가]] {{gameMode}} 모드를 처음으로 클리어했다!\n{{newModifier}}[[를]] 손에 넣었다!",
|
||||||
"ppReduced": "{{targetName}}의\n{{moveName}}[[를]] {{reduction}} 깎았다!",
|
"ppReduced": "{{targetName}}의\n{{moveName}}[[를]] {{reduction}} 깎았다!",
|
||||||
"battlerTagsSubstituteOnAdd": "{{pokemonNameWithAffix}}의\n대타가 나타났다!",
|
|
||||||
"battlerTagsSubstituteOnHit": "{{pokemonNameWithAffix}}[[를]] 대신하여\n대타가 공격을 받았다!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "{{pokemonNameWithAffix}}의\n대타는 사라져 버렸다..."
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}}[[는]] 자신의 체력을 깎아서\n{{pokemonName}}에게 저주를 걸었다!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}}[[는]] 자신의 체력을 깎아서\n{{pokemonName}}에게 저주를 걸었다!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}}[[는]]\n저주받고 있다!",
|
"cursedLapse": "{{pokemonNameWithAffix}}[[는]]\n저주받고 있다!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}}[[는]]\n{{stockpiledCount}}개 비축했다!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}}[[는]]\n{{stockpiledCount}}개 비축했다!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}}의\n대타가 나타났다!",
|
||||||
|
"substituteOnHit": "{{pokemonNameWithAffix}}[[를]] 대신하여\n대타가 공격을 받았다!",
|
||||||
|
"substituteOnRemove": "{{pokemonNameWithAffix}}의\n대타는 사라져 버렸다...",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -96,7 +96,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"unlockedSomething": "{{unlockedThing}}\nfoi desbloqueado.",
|
"unlockedSomething": "{{unlockedThing}}\nfoi desbloqueado.",
|
||||||
"congratulations": "Parabéns!",
|
"congratulations": "Parabéns!",
|
||||||
"beatModeFirstTime": "{{speciesName}} venceu o Modo {{gameMode}} pela primeira vez!\nVocê recebeu {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} venceu o Modo {{gameMode}} pela primeira vez!\nVocê recebeu {{newModifier}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "{{pokemonNameWithAffix}} colocou um substituto!",
|
|
||||||
"battlerTagsSubstituteOnHit": "O substituto tomou o dano pelo {{pokemonNameWithAffix}}!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "O substituto de {{pokemonNameWithAffix}} desbotou!"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} cortou seus PS pela metade e amaldiçoou {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} cortou seus PS pela metade e amaldiçoou {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} foi ferido pelo Curse!",
|
"cursedLapse": "{{pokemonNameWithAffix}} foi ferido pelo Curse!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} estocou {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} estocou {{stockpiledCount}}!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}} colocou um substituto!",
|
||||||
|
"substituteOnHit": "O substituto tomou o dano pelo {{pokemonNameWithAffix}}!",
|
||||||
|
"substituteOnRemove": "O substituto de {{pokemonNameWithAffix}} desbotou!",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -88,7 +88,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"unlockedSomething": "{{unlockedThing}}\n已解锁。",
|
"unlockedSomething": "{{unlockedThing}}\n已解锁。",
|
||||||
"congratulations": "恭喜!",
|
"congratulations": "恭喜!",
|
||||||
"beatModeFirstTime": "{{speciesName}}首次击败了{{gameMode}}!\n你获得了{{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}}首次击败了{{gameMode}}!\n你获得了{{newModifier}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "{{pokemonNameWithAffix}}的\n替身出现了!",
|
|
||||||
"battlerTagsSubstituteOnHit": "替身代替{{pokemonNameWithAffix}}\n承受了攻击!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "{{pokemonNameWithAffix}}的\n替身消失了……"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}}削减了自己的体力,\n并诅咒了{{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}}削减了自己的体力,\n并诅咒了{{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}}\n正受到诅咒!",
|
"cursedLapse": "{{pokemonNameWithAffix}}\n正受到诅咒!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}}的\n替身出现了!",
|
||||||
|
"substituteOnHit": "替身代替{{pokemonNameWithAffix}}\n承受了攻击!",
|
||||||
|
"substituteOnRemove": "{{pokemonNameWithAffix}}的\n替身消失了……",
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -85,7 +85,4 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"unlockedSomething": "{{unlockedThing}}\nhas been unlocked.",
|
"unlockedSomething": "{{unlockedThing}}\nhas been unlocked.",
|
||||||
"congratulations": "Congratulations!",
|
"congratulations": "Congratulations!",
|
||||||
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
||||||
"battlerTagsSubstituteOnAdd": "{{pokemonNameWithAffix}}的\n替身出現了!",
|
|
||||||
"battlerTagsSubstituteOnHit": "替身代替{{pokemonNameWithAffix}}承受了攻擊!",
|
|
||||||
"battlerTagsSubstituteOnRemove": "{{pokemonNameWithAffix}}的\n替身消失了……"
|
|
||||||
} as const;
|
} as const;
|
||||||
|
@ -70,4 +70,7 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"cursedOnAdd": "{{pokemonNameWithAffix}}削減了自己的體力,並詛咒了{{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}}削減了自己的體力,並詛咒了{{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}}正受到詛咒!",
|
"cursedLapse": "{{pokemonNameWithAffix}}正受到詛咒!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
||||||
|
"substituteOnAdd": "{{pokemonNameWithAffix}}的\n替身出現了!",
|
||||||
|
"substituteOnHit": "替身代替{{pokemonNameWithAffix}}承受了攻擊!",
|
||||||
|
"substituteOnRemove": "{{pokemonNameWithAffix}}的\n替身消失了……",
|
||||||
} as const;
|
} as const;
|
||||||
|
Loading…
Reference in New Issue
Block a user