解析修改:playerCeService

This commit is contained in:
luying
2020-12-15 19:54:32 +08:00
parent 9fe95f2a4e
commit 7f256c996e
8 changed files with 89 additions and 193 deletions

View File

@@ -124,11 +124,11 @@ export const ABI_TYPE_TO_STAGE = new Map<number, number | ((jobType: number) =>
[ABI_STAGE.LUK, ABI_TYPE.ABI_LUK]
]);
export function getAtrrNameById(attrId: number) {
export function getAtrrNameById(attrId: number):string {
return HERO_ATTR[attrId];
};
export function getAttrCeRatio(attr: string) {
export function getAttrCeRatio(attr: string):number {
return CE_RATIO[attr];
};