miao-plugin/resources/meta/character/云堇/calc.js

26 lines
660 B
JavaScript
Raw Normal View History

2022-08-18 21:04:31 +00:00
export const details = [{
title: 'Q提供普攻基础伤害',
dmg: ({ talent, attr, calc }) => {
return {
avg: (talent.q['伤害值提升'] / 100 + 0.115) * calc(attr.def)
}
}
}, {
title: '二段蓄力E伤害',
dmg: ({ talent, attr, calc }, { basic }) => {
let ret = talent.e['二段蓄力伤害'] * calc(attr.def) / 100 + (attr.e.plus || 0)
return basic(ret, 'e')
}
}]
export const mainAttr = 'atk,def,cpct,cdmg'
export const buffs = [{
title: '云堇被动队伍存在4元素类型角色时Q提供的普攻伤害提高[_q]',
data: {
_q: ({ attr, calc }) => {
return calc(attr.def) * 0.115
}
}
}]