mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-18 13:35:12 +00:00
1f41823f17
`#角色持有率` 增加提示说明 `#圣遗物列表` 展示个数提升至28 部分页面样式调整及提示优化
31 lines
752 B
JavaScript
31 lines
752 B
JavaScript
export const details = [{
|
||
title: "E提升攻击力",
|
||
dmg: ({ talent, attr }) => {
|
||
return {
|
||
avg: talent.e['攻击力加成比例'] * attr.atk.base / 100
|
||
}
|
||
}
|
||
}, {
|
||
title: "E后Q首段伤害",
|
||
dmg: ({ talent }, dmg) => dmg(talent.q['天狗咒雷·金刚坏 伤害'], 'q')
|
||
}, {
|
||
title: "E后Q每段",
|
||
dmg: ({ talent }, dmg) => dmg(talent.q['天狗咒雷·雷砾 伤害'], 'q')
|
||
}];
|
||
|
||
export const defDmgIdx = 1;
|
||
export const mainAttr = "atk,cpct,cdmg";
|
||
|
||
export const buffs = [{
|
||
title: "九条E技能:提升攻击力[atkPlus]",
|
||
data: {
|
||
atkPlus: ({ attr, talent }) => talent.e['攻击力加成比例'] * attr.atk.base / 100
|
||
}
|
||
}, {
|
||
title: "九条6命:提升60%雷元素爆伤",
|
||
cons: 6,
|
||
data: {
|
||
cdmg: 60
|
||
}
|
||
}]
|