miao-plugin/resources/meta/character/刻晴/calc.js
yoimiya-kokomi 46dd0f95c2 #角色面板 增加刻晴伤害计算
一些Bugfix 及 文案优化
2022-05-05 18:10:29 +08:00

21 lines
539 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: "Q单段伤害",
dmg: ({ talent }, dmg) => dmg(talent.q['连斩伤害2'][0], 'q')
}, {
title: "Q总伤害",
params: { q: 1 },
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'] + talent.q['连斩伤害'] + talent.q['最后一击伤害'], 'q')
}];
export const mainAttr = "atk,cpct,cdmg";
export const buffs = [{
title: "刻晴6命4层获得24%雷伤加成",
data: {
dmg: 24
}
}]