mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-02 17:35:54 +01:00
* test commit * de modified readme * first implementation, needs testing with healer * fixed beahviour if 2+ opponents are on field, also added message * further fixed * reset of overrides.ts before merge to main * fixed grammar Co-authored-by: Jonas Pinson <jonas.pinson@gmail.com> * Implemented changes suggested by @bennybroseph and @TempsRay * Added more docs to the class * removed old comments * fixed ability name in comments * added translation and made message localized * fixed ability name * added missing bracket --------- Co-authored-by: Jonas Pinson <jonas.pinson@gmail.com>
7 lines
286 B
TypeScript
7 lines
286 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const abilityTriggers: SimpleTranslationEntries = {
|
|
'blockRecoilDamage' : `{{pokemonName}} wurde durch {{abilityName}}\nvor Rückstoß geschützt!`,
|
|
'badDreams': `{{pokemonName}} wird gequält!`,
|
|
} as const;
|