2022-06-20 22:55:08 +00:00
|
|
|
|
export const details = [{
|
2022-08-06 19:06:12 +00:00
|
|
|
|
title: 'E长按伤害',
|
2022-06-20 22:55:08 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['长按技能伤害'], 'e')
|
|
|
|
|
}, {
|
2022-08-06 19:06:12 +00:00
|
|
|
|
title: 'Q斩击伤害',
|
2022-06-20 22:55:08 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['斩击伤害'], 'q')
|
|
|
|
|
}, {
|
2022-08-06 19:06:12 +00:00
|
|
|
|
title: 'Q无转化每段伤害',
|
2022-06-20 22:55:08 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['持续伤害'], 'q')
|
2022-06-20 23:03:49 +00:00
|
|
|
|
}, {
|
2022-08-06 19:06:12 +00:00
|
|
|
|
title: '扩散反应伤害',
|
2022-11-06 07:22:28 +00:00
|
|
|
|
dmg: ({}, { reaction }) => reaction('swirl')
|
2022-08-06 19:06:12 +00:00
|
|
|
|
}]
|
2022-06-20 22:55:08 +00:00
|
|
|
|
|
2022-08-06 19:06:12 +00:00
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg,mastery'
|
2022-06-20 22:55:08 +00:00
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
2022-08-06 19:06:12 +00:00
|
|
|
|
title: '万叶2命:开Q后精通提高200',
|
|
|
|
|
cons: 2,
|
2022-06-20 22:55:08 +00:00
|
|
|
|
data: {
|
|
|
|
|
mastery: 200
|
|
|
|
|
}
|
2023-10-06 23:44:15 +00:00
|
|
|
|
}, 'swirl']
|