mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-02 14:32:18 +02:00
* Update Foresight PR to current beta Implements Foresight, Miracle Eye, and Odor Sleuth * Add placeholder i18n strings * Minor tsdoc updates * Fix placement of evasion level modifier, add tests * Add first batch of translations Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> * Second batch of translations Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com> * Add Catalan and Japanese translation placeholder strings * Fix issue caused by merge --------- Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com>
64 lines
4.2 KiB
TypeScript
64 lines
4.2 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
||
export const moveTriggers: SimpleTranslationEntries = {
|
||
"hitWithRecoil" : "{{pokemonName}}\n受到了反作用力造成的伤害!",
|
||
"cutHpPowerUpMove": "{{pokemonName}}\n削减了体力并提升了招式威力!",
|
||
"absorbedElectricity": "{{pokemonName}}\n吸收了电力!",
|
||
"switchedStatChanges": "{{pokemonName}}和对手互换了\n自己的能力变化!",
|
||
"goingAllOutForAttack": "{{pokemonName}}拿出全力了!",
|
||
"regainedHealth": "{{pokemonName}}的\n体力回复了!",
|
||
"keptGoingAndCrashed": "{{pokemonName}}因势头过猛\n而撞到了地面!",
|
||
"fled": "{{pokemonName}}\n逃走了!",
|
||
"cannotBeSwitchedOut": "{{pokemonName}}\n无法被收回!",
|
||
"swappedAbilitiesWithTarget": "{{pokemonName}}\n互换了各自的特性!",
|
||
"coinsScatteredEverywhere": "金币散落一地!",
|
||
"attackedByItem": "{{pokemonName}}被\n{{itemName}}袭击了!",
|
||
"whippedUpAWhirlwind": "{{pokemonName}}周围的\n空气产生了旋涡!",
|
||
"flewUpHigh": "{{pokemonName}}\n飞向了高空!",
|
||
"tookInSunlight": "{{pokemonName}}\n吸收了光!",
|
||
"dugAHole": "{{pokemonName}}\n钻入了地里!",
|
||
"loweredItsHead": "{{pokemonName}}\n把头缩了进去!",
|
||
"isGlowing": "强光包围了{{pokemonName}}\n!",
|
||
"bellChimed": "铃声响彻四周!",
|
||
"foresawAnAttack": "{{pokemonName}}\n预知了未来的攻击!",
|
||
"hidUnderwater": "{{pokemonName}}\n潜入了水中!",
|
||
"soothingAromaWaftedThroughArea": "怡人的香气扩散了开来!",
|
||
"sprangUp": "{{pokemonName}}\n高高地跳了起来!",
|
||
"choseDoomDesireAsDestiny": "{{pokemonName}}\n将破灭之愿托付给了未来!",
|
||
"vanishedInstantly": "{{pokemonName}}的身影\n瞬间消失了!",
|
||
"tookTargetIntoSky": "{{pokemonName}}将{{targetName}}\n带上了高空!",
|
||
"becameCloakedInFreezingLight": "{{pokemonName}}\n被冷光包围了!",
|
||
"becameCloakedInFreezingAir": "{{pokemonName}}\n被冰冻的空气包围了!",
|
||
"isChargingPower": "{{pokemonName}}\n正在积蓄力量!",
|
||
"burnedItselfOut": "{{pokemonName}}的火焰燃尽了!",
|
||
"startedHeatingUpBeak": "{{pokemonName}}\n开始给鸟嘴加热了!",
|
||
"isOverflowingWithSpacePower": "{{pokemonName}}身上\n溢出了宇宙之力!",
|
||
"usedUpAllElectricity": "{{pokemonName}}\n用尽电力了!",
|
||
"stoleItem": "{{pokemonName}}从{{targetName}}那里\n夺取了{{itemName}}!",
|
||
"incineratedItem": "{{pokemonName}}烧没了\n{{targetName}}的{{itemName}}!",
|
||
"knockedOffItem": "{{pokemonName}}拍落了\n{{targetName}}的{{itemName}}!",
|
||
"tookMoveAttack": "{{pokemonName}}\n受到了{{moveName}}的攻击!",
|
||
"cutOwnHpAndMaximizedStat": "{{pokemonName}}\n削减了体力并释放了全部{{statName}}!",
|
||
"copiedStatChanges": "{{pokemonName}}复制了\n{{targetName}}的能力变化!",
|
||
"magnitudeMessage": "震级{{magnitude}}!",
|
||
"tookAimAtTarget": "{{pokemonName}}将目标对准了\n{{targetName}}!",
|
||
"transformedIntoType": "{{pokemonName}} \n变成了{{typeName}}属性!",
|
||
"copiedMove": "{{pokemonName}}\n复制了{{moveName}}!",
|
||
"sketchedMove": "{{pokemonName}}\n对{{moveName}}进行了写生!",
|
||
"acquiredAbility": "{{pokemonName}}的特性\n变为{{abilityName}}了!",
|
||
"copiedTargetAbility": "{{pokemonName}}复制了\n{{targetName}}的{{abilityName}}!",
|
||
"transformedIntoTarget": "{{pokemonName}}\n变身成了{{targetName}}!",
|
||
"tryingToTakeFoeDown": "{{pokemonName}}\n想和对手同归于尽!",
|
||
"addType": "{{pokemonName}}\n增加了{{typeName}}属性!",
|
||
"cannotUseMove": "{{pokemonName}}\n无法使用{{moveName}}!",
|
||
"healHp": "{{pokemonName}}的\n体力回复了!",
|
||
"sacrificialFullRestore": "{{pokemonName}}的\n治愈之愿实现了!",
|
||
"invertStats": "{{pokemonName}}的\n能力变化颠倒过来了!",
|
||
"resetStats": "{{pokemonName}}的\n能力变化复原了!",
|
||
"faintCountdown": "{{pokemonName}}\n将在{{turnCount}}回合后灭亡!",
|
||
"copyType": "{{pokemonName}}\n变成了{{targetPokemonName}}的属性!",
|
||
"suppressAbilities": "{{pokemonName}}的特性\n变得无效了!",
|
||
"swapArenaTags": "{{pokemonName}}\n交换了双方的场地效果!",
|
||
"exposedMove": "{{pokemonName}}识破了\n{{targetPokemonName}}的原型!",
|
||
} as const;
|