2022-04-29 21:54:41 +00:00
|
|
|
|
export const details = [{
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: 'E后瞬水剑三段伤害',
|
2022-04-29 21:54:41 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['三段瞬水剑伤害'], 'a')
|
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: 'E后瞬水剑三段蒸发',
|
2022-11-05 11:31:07 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['三段瞬水剑伤害'], 'a', 'vaporize')
|
2022-04-29 21:54:41 +00:00
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '神里流·水囿每段伤害',
|
2022-04-29 21:54:41 +00:00
|
|
|
|
params: { q: 1 },
|
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['水花剑伤害'], 'q')
|
2022-08-07 18:26:25 +00:00
|
|
|
|
}]
|
2022-04-29 21:54:41 +00:00
|
|
|
|
|
2022-08-07 18:26:25 +00:00
|
|
|
|
export const defDmgIdx = 1
|
|
|
|
|
export const mainAttr = 'hp,atk,cpct,cdmg,mastery'
|
2022-04-29 21:54:41 +00:00
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
|
|
|
|
cons: 2,
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '绫人2命:3层浪闪以上时提高50%生命值',
|
2022-04-29 21:54:41 +00:00
|
|
|
|
data: {
|
|
|
|
|
hpPct: ({ params }) => params.q ? 0 : 50
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
check: ({ cons }) => cons < 2,
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '4层浪闪:提高瞬水剑伤害[aPlus]',
|
2022-04-29 21:54:41 +00:00
|
|
|
|
data: {
|
2022-09-06 19:28:46 +00:00
|
|
|
|
aPlus: ({ attr, calc, talent }) => calc(attr.hp) * talent.e['浪闪伤害值提高'] / 100 * 4
|
2022-04-29 21:54:41 +00:00
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
cons: 2,
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '绫人2命:5层浪闪提高瞬水剑伤害[aPlus]',
|
2022-04-29 21:54:41 +00:00
|
|
|
|
data: {
|
2022-09-06 19:28:46 +00:00
|
|
|
|
aPlus: ({ attr, calc, talent }) => calc(attr.hp) * talent.e['浪闪伤害值提高'] / 100 * 5
|
2022-04-29 21:54:41 +00:00
|
|
|
|
}
|
2022-11-05 11:31:07 +00:00
|
|
|
|
}, 'vaporize']
|