mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-25 01:21:55 +00:00
23 lines
630 B
JavaScript
23 lines
630 B
JavaScript
|
export const details = [{
|
||
|
title: '秘法·惊喜特派伤害',
|
||
|
talent: 'q',
|
||
|
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
|
||
|
}, {
|
||
|
title: '护盾最大吸收量',
|
||
|
talent: 'e',
|
||
|
dmg: ({ talent, calc, attr }, { shield }) => shield(talent.e['护盾吸收量上限2'][0] * calc(attr.hp) / 100 + talent.e['护盾吸收量上限2'][1] * 1)
|
||
|
}]
|
||
|
|
||
|
export const mainAttr = 'atk,hp,cpct,cdmg'
|
||
|
|
||
|
export const buffs =[{
|
||
|
title: '绮良良被动:基于绮良良的生命上限,秘法·惊喜特派伤害提升[qDmg]%',
|
||
|
data: {
|
||
|
qDmg: ({ attr, calc }) => calc(attr.hp) / 1000 * 0.3
|
||
|
}
|
||
|
}]
|
||
|
|
||
|
|
||
|
|
||
|
|