2022-05-05 10:10:29 +00:00
|
|
|
|
export const details = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E后重击伤害',
|
2022-05-05 10:10:29 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.a['重击伤害'], 'a2')
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'Q单段伤害',
|
2022-05-05 10:10:29 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['连斩伤害2'][0], 'q')
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'Q总伤害',
|
2022-05-05 10:10:29 +00:00
|
|
|
|
params: { q: 1 },
|
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'] + talent.q['连斩伤害'] + talent.q['最后一击伤害'], 'q')
|
2022-07-30 21:06:00 +00:00
|
|
|
|
}]
|
2022-05-05 10:10:29 +00:00
|
|
|
|
|
2022-07-30 21:06:00 +00:00
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg'
|
2022-05-05 10:10:29 +00:00
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: '刻晴6命:4层获得24%雷伤加成',
|
2022-05-05 11:33:12 +00:00
|
|
|
|
cons: 6,
|
2022-05-05 10:10:29 +00:00
|
|
|
|
data: {
|
|
|
|
|
dmg: 24
|
|
|
|
|
}
|
|
|
|
|
}]
|