mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-05 23:47:54 +00:00
15 lines
1.1 KiB
TypeScript
15 lines
1.1 KiB
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const modifier: SimpleTranslationEntries = {
|
||
|
"surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!",
|
||
|
"turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!",
|
||
|
"hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!",
|
||
|
"pokemonInstantReviveApply": "{{pokemonNameWithAffix}} was revived\nby its {{typeName}}!",
|
||
|
"pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!",
|
||
|
"moneyInterestApply": "You received interest of ₽{{moneyAmount}}\nfrom the {{typeName}}!",
|
||
|
"turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!",
|
||
|
"contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!",
|
||
|
"enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!",
|
||
|
"bypassSpeedChanceApply": "{{pokemonName}} can act faster than normal, thanks to its {{itemName}}!",
|
||
|
} as const;
|