miao-plugin/resources/meta/character/枫原万叶/calc.js
yoimiya-kokomi 89769be51a 增加扩散、感电的计算逻辑,感谢 **@49631073**的逻辑梳理
伤害计算增加 万叶ⁿᵉʷ、久岐忍ⁿᵉʷ,温迪增加扩散伤害计算
部分角色评分权重微调
2022-06-21 06:55:08 +08:00

26 lines
626 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: "扩散反应伤害",
dmg: ({}, { ks }) => ks()
}, {
title: "E长按伤害",
dmg: ({ talent }, dmg) => dmg(talent.e['长按技能伤害'], 'e')
}, {
title: "Q斩击伤害",
dmg: ({ talent }, dmg) => dmg(talent.q['斩击伤害'], 'q')
}, {
title: "Q无转化每段伤害",
dmg: ({ talent }, dmg) => dmg(talent.q['持续伤害'], 'q')
}];
export const mainAttr = "atk,cpct,cdmg,mastery";
export const buffs = [{
title: "万叶2命开Q后精通提高200",
data: {
mastery: 200
}
}, {
title: "元素精通:扩散伤害提高[ks]%",
sort: 2,
mastery: "ks"
}];