mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-17 21:22:53 +00:00
c6a70b3a6d
修正圣遗物流派判定的部分错误
8 lines
291 B
JavaScript
8 lines
291 B
JavaScript
export default function ({ attr, rule, def }) {
|
|
// 激化精通璃月雷神,具体数值待定
|
|
if (attr.mastery > 80) {
|
|
return rule('刻晴-精通', { atk: 75, cpct: 100, cdmg: 100, mastery: 75, dmg: 100 })
|
|
}
|
|
return def({ atk: 75, cpct: 100, cdmg: 100, dmg: 100, phy: 100 })
|
|
}
|