miao-plugin/resources/meta-gs/character/胡桃/calc.js
2023-10-25 03:34:36 +08:00

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