miao-plugin/resources/meta/character/早柚/calc.js

25 lines
744 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: 'Q每跳治疗量',
dmg: ({ attr, calc, talent, cons }, { heal }) => {
let num = talent.q['不倒貉貉治疗量2'][0] * calc(attr.atk) / 100 + talent.q['不倒貉貉治疗量2'][1] * 1
if (cons * 1 === 6) {
num += Math.min(calc(attr.mastery) * 3, 6000)
}
return heal(num)
}
}, {
title: '扩散反应伤害',
dmg: ({}, { reaction }) => reaction('swirl')
}]
export const mainAttr = 'atk,cpct,cdmg,mastery'
export const buffs = [{
title: '早柚6命基于精通提升Q [qPct]伤害,[_heal]治疗量',
cons: 6,
data: {
qPct: ({ attr, calc }) => Math.min(calc(attr.mastery) * 0.002, 400),
_heal: ({ attr, calc }) => Math.min(calc(attr.mastery) * 3, 6000)
}
}]