2022-05-02 22:32:36 +00:00
|
|
|
|
export const details = [{
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '玉璋护盾量',
|
|
|
|
|
talent: 'e',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
dmg: ({ attr, calc, talent }, { shield }) => shield(talent.e['护盾基础吸收量'] + calc(attr.hp) * talent.e['护盾附加吸收量'] / 100)
|
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '共鸣伤害',
|
|
|
|
|
talent: 'e',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['岩脊伤害/共鸣伤害'][1], 'e') // 6856
|
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '天星伤害',
|
|
|
|
|
talent: 'q',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
|
2022-08-07 18:26:25 +00:00
|
|
|
|
}]
|
2022-05-02 22:32:36 +00:00
|
|
|
|
|
2022-08-07 18:26:25 +00:00
|
|
|
|
export const defDmgIdx = 2
|
|
|
|
|
export const mainAttr = 'hp,atk,cpct,cdmg'
|
2022-05-02 22:32:36 +00:00
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '钟离被动:满层Buff下护盾强效提高25%',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
data: {
|
|
|
|
|
shield: 25
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '岩系护盾:岩系护盾吸收效率150%',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
data: {
|
|
|
|
|
shieldInc: 50
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '钟离被动:基于生命值上限,共鸣伤害提高[ePlus],天星伤害提高[qPlus]',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
data: {
|
|
|
|
|
ePlus: ({ attr, calc }) => calc(attr.hp) * 0.019,
|
|
|
|
|
qPlus: ({ attr, calc }) => calc(attr.hp) * 0.33
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-08-07 18:26:25 +00:00
|
|
|
|
title: '玉璋护盾:降低敌人全抗性20%',
|
2022-05-02 22:32:36 +00:00
|
|
|
|
data: {
|
|
|
|
|
kx: 20
|
|
|
|
|
}
|
2022-08-07 18:26:25 +00:00
|
|
|
|
}]
|