mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
1f41823f17
`#角色持有率` 增加提示说明 `#圣遗物列表` 展示个数提升至28 部分页面样式调整及提示优化
24 lines
527 B
JavaScript
24 lines
527 B
JavaScript
import { erType } from "./calc-meta.js";
|
|
|
|
export const Mastery = {
|
|
|
|
getType() {
|
|
|
|
},
|
|
getMultiple(type = 'zf', mastery = 0) {
|
|
let typeCfg = erType[type];
|
|
if (typeCfg.type === "pct") {
|
|
return 2.78 * mastery / (mastery + 1400) * 100;
|
|
} else if (typeCfg.type === "fusion") {
|
|
return (1 + mastery * 16) / (mastery + 2000) * 100;
|
|
}
|
|
return 0;
|
|
},
|
|
getBasePct(type, element) {
|
|
let typeCfg = erType[type];
|
|
if (typeCfg) {
|
|
return typeCfg.num({ element }) || 1;
|
|
}
|
|
return 1;
|
|
}
|
|
} |