mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 21:00:05 +00:00
c6a70b3a6d
修正圣遗物流派判定的部分错误
8 lines
255 B
JavaScript
8 lines
255 B
JavaScript
export default function ({ attr, rule, def }) {
|
|
// 优菈核爆
|
|
if (attr.cpct < 15 && attr.cdmg > 200) {
|
|
return rule('优菈-核爆', { atk: 100, cdmg: 100, phy: 100 })
|
|
}
|
|
return def({ atk: 75, cpct: 100, cdmg: 100, phy: 100, recharge: 55 })
|
|
}
|