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

22 lines
554 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.e['技能伤害'], 'e')
}, ({ cons }) => {
let count = cons === 6 ? 4 : 3
return {
title: `Q ${count}柄灵刃总伤害`,
dmg: ({ talent, cons }, dmg) => dmg(talent.q['技能伤害'] * count, 'q')
}
}]
export const defDmgIdx = 1
export const mainAttr = 'atk,cpct,cdmg'
export const buffs = [{
title: '重云6命对于生命百分比低于重云的敌人伤害提升15%,同时额外多一柄灵刃',
cons: 6,
data: {
qDmg: 15
}
}]