修复银时三维计算错误问题

This commit is contained in:
枫谷剑仙 2020-09-23 16:06:47 +08:00
parent 0dad9225de
commit 6751a5a64c
3 changed files with 5 additions and 5 deletions

View File

@ -255,7 +255,7 @@
content: "隊伍回復(隊伍覺醒和徽章)";
}
.team-total-info .tIf-total-move::before{
content: "隊伍移動時間:";
content: "隊伍操作時間:";
}
.team-total-info .tIf-total-move::after{
content: " 秒";

View File

@ -255,7 +255,7 @@
content: "队伍回复(队伍觉醒和徽章)";
}
.team-total-info .tIf-total-move::before{
content: "队伍移动时间:";
content: "队伍操作时间:";
}
.team-total-info .tIf-total-move::after{
content: " 秒";

View File

@ -266,13 +266,13 @@ function valueAt(level, maxLevel, curve) {
function curve(c, level, maxLevel, limitBreakIncr) {
let value = valueAt(level, maxLevel, {
min: c.min,
max: c.max || (c.min * maxLevel),
max: c.max!==undefined ? c.max : (c.min * maxLevel),
scale: c.scale || 1
});
if (level > maxLevel) {
const exceed = level - maxLevel;
value += c.max ? (c.max * (limitBreakIncr / 100) * (exceed / 11)) : c.min * exceed;
const exceed = level - maxLevel;
value += c.max!==undefined ? (c.max * (limitBreakIncr / 100) * (exceed / 11)) : c.min * exceed;
}
return value;
}