mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 03:07:28 +00:00
523f818e12
* Update ability-trigger.ts * Update achv.ts * Update battle.ts * Update challenges.ts * Update battle.ts * Update party-ui-handler.ts * Update pokemon-info-container.ts * Update trainers.ts * Update achv.ts * Update achv.ts * Update achv.ts * Update splash-messages.ts * Update achv.ts * Update achv.ts * Update trainers.ts * Update src/locales/fr/achv.ts Co-authored-by: Dakurei <maxime.palanchini@gmail.com> * Update challenges.ts * Update src/locales/fr/battle.ts Co-authored-by: Dakurei <maxime.palanchini@gmail.com> * Update battle.ts * Update battle.ts --------- Co-authored-by: Dakurei <maxime.palanchini@gmail.com>
11 lines
675 B
TypeScript
11 lines
675 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
||
export const abilityTriggers: SimpleTranslationEntries = {
|
||
"blockRecoilDamage" : "{{abilityName}}\nde {{pokemonName}} le protège du contrecoup !",
|
||
"badDreams": "{{pokemonName}} a le sommeil agité !",
|
||
"windPowerCharged": "{{pokemonName}} a été touché par la capacité {{moveName}} et se charge en électricité !",
|
||
"perishBody": "{{abilityName}} de {{pokemonName}}\nmettra les deux Pokémon K.O. dans trois tours !",
|
||
"poisonHeal": "{{abilityName}} de {{pokemonName}}\nrestaure un peu ses PV !",
|
||
"iceFaceAvoidedDamage": "{{pokemonName}} évite les dégâts\navec {{abilityName}} !"
|
||
} as const;
|