miao-plugin/resources/meta/character/胡桃/calc.js
yoimiya-kokomi 18faeae290 伤害计算增加砂糖、辛焱
`#雷神面板`展示数据API及更新时间
2022-08-21 07:40:32 +08:00

28 lines
776 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: '半血开E重击',
dmg: ({ talent, attr }, dmg) => dmg(talent.a['重击伤害'], 'a2')
}, {
title: '半血开E重击蒸发',
dmg: ({ talent, attr }, dmg) => dmg(talent.a['重击伤害'], 'a2', 'zf')
}, {
title: '半血开E后Q',
dmg: ({ talent, attr }, dmg) => dmg(talent.q['低血量时技能伤害'], 'q')
}]
export const defDmgIdx = 1
export const mainAttr = 'hp,atk,cpct,cdmg,mastery'
export const buffs = [{
title: '蝶引来生开E获得[atkPlus]点攻击力加成',
data: {
atkPlus: ({ talent, attr, calc }) => {
return Math.min(talent.e['攻击力提高'] * calc(attr.hp) / 100, attr.atk.base * 4)
}
}
}, {
title: '胡桃被动半血获得33%火伤加成',
data: {
dmg: 33
}
}, 'zf']