mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-20 00:36:00 +00:00
* eslint config + packages * updated eslint config * fix the issue eslint adding ;;;; at interfaces * first round with eslint --fix . * removed config for unused export * Revert "first round with eslint --fix ." This reverts commit 77a88e0895f7c3389cb223651b90d918af778fe9. * removed config for camelCase * for real this time, first round of eslint --fix . * halfway to manual eslint fix * eslint done * added "how to setup" the hook to eslint --fix each new file before commit (if wanted) * removed eslintrc config file duplicat * fix human error + ignore build folder + merge overrides * added curly brace style + eslint * applied double quote linter rule * added lefthook * test precommit * test precommit * test precommit * test precommit * test precommit * test precommit * test precommit * github action to run eslint * added node_modules to ignore eslint * different action for typescript * no need for different glob (default src) * node 20 * node 20 * removed no longer needed install file * remove hooks part from README * eslint fixes --------- Co-authored-by: Frederico Santos <frederico.f.santos@tecnico.ulisboa.pt>
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { BerryTranslationEntries } from "#app/plugins/i18n";
|
||
|
||
export const berry: BerryTranslationEntries = {
|
||
"SITRUS": {
|
||
name: "文柚果",
|
||
effect: "HP低于50%时,回复最大HP的25%",
|
||
},
|
||
"LUM": {
|
||
name: "木子果",
|
||
effect: "治愈任何异常状态和混乱状态",
|
||
},
|
||
"ENIGMA": {
|
||
name: "谜芝果",
|
||
effect: "受到效果绝佳的招式攻击时,回复25%最大HP",
|
||
},
|
||
"LIECHI": {
|
||
name: "枝荔果",
|
||
effect: "HP低于25%时,攻击提升一个等级",
|
||
},
|
||
"GANLON": {
|
||
name: "龙睛果",
|
||
effect: "HP低于25%时,防御提升一个等级",
|
||
},
|
||
"PETAYA": {
|
||
name: "龙火果",
|
||
effect: "HP低于25%时,特攻提升一个等级",
|
||
},
|
||
"APICOT": {
|
||
name: "杏仔果",
|
||
effect: "HP低于25%时,特防提升一个等级",
|
||
},
|
||
"SALAC": {
|
||
name: "沙鳞果",
|
||
effect: "HP低于25%时,速度提升一个等级",
|
||
},
|
||
"LANSAT": {
|
||
name: "兰萨果",
|
||
effect: "HP低于25%时,击中要害率提升两个等级",
|
||
},
|
||
"STARF": {
|
||
name: "星桃果",
|
||
effect: "HP低于25%时,提高随机一项能力两个等级",
|
||
},
|
||
"LEPPA": {
|
||
name: "苹野果",
|
||
effect: "有招式的PP降到0时,恢复该招式10PP",
|
||
},
|
||
} as const;
|