miao-plugin/resources/meta/character/鹿野院平藏/calc.js
2022-08-08 02:26:25 +08:00

24 lines
726 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) => {
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
}
}]