mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 21:19:18 +01:00
* implement quick draw * add line * change ability success condition * quick draw comes before quick claw effect * now ability has chance variable to test conditional situation * add unit test * Merge branch 'main' into ability-quick-draw * modifed: ability.getTriggerMessage * modified: to use pokemon.battleData.abilityRevealed * modified: changed private variable to public * erase expect interceptor log * add localizations * modified: add comma in locales * modified: ability docs & trigger logic * modified: changed test logic
12 lines
729 B
TypeScript
12 lines
729 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const abilityTriggers: SimpleTranslationEntries = {
|
|
"blockRecoilDamage" : "{{pokemonName}} wurde durch {{abilityName}} vor Rückstoß geschützt!",
|
|
"badDreams": "{{pokemonName}} ist in einem Alptraum gefangen!",
|
|
"costar": "{{pokemonName}} kopiert die Statusveränderungen von {{allyName}}!",
|
|
"iceFaceAvoidedDamage": "{{pokemonName}} wehrt Schaden mit {{abilityName}} ab!",
|
|
"trace": "{{pokemonName}} kopiert {{abilityName}} von {{targetName}}!",
|
|
"windPowerCharged": "Der Treffer durch {{moveName}} läd die Stärke von {{pokemonName}} auf!",
|
|
"quickDraw": "{{pokemonName}} can act faster than normal, thanks to its Quick Draw!",
|
|
} as const;
|