miao-plugin/resources/meta/character/鹿野院平藏/calc.js
yoimiya-kokomi 7ad6003d76 角色伤害计算增加 鹿野院平藏、烟绯
圣遗物评分部分角色词条权重调整
其他面板更新、日历等已知问题修复
2022-07-13 05:53:20 +08:00

24 lines
836 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const details = [{
title: "勠心拳伤害",
params: { e: 0 },
dmg: ({ talent }, dmg) => dmg(talent.e["技能伤害"], "e")
}, {
title: "满层勠心拳伤害",
params: { e: 4 },
dmg: ({ talent }, dmg) => {
console.log(talent.e["技能伤害"], talent.e["变格伤害提升"][0], talent.e["正论伤害提升"])
return dmg(talent.e["技能伤害"] * 1 + talent.e["变格伤害提升"][0] * 4 + talent.e["正论伤害提升"] * 1, "e")
}
}, {
title: "Q真空弹伤害",
dmg: ({ talent }, dmg) => dmg(talent.q["不动流·真空弹伤害"], "q")
}];
export const buffs = [{
title: "平藏6命每层「变格」提高E 4%暴击率,「正论」提高E 32%暴击伤害",
cons: 6,
data: {
eCpct: ({ params }) => params.e === 4 ? 24 : 0,
eCdmg: ({ params }) => params.e === 4 ? 32 : 0
}
}];