mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-17 05:08:14 +00:00
7 lines
248 B
JavaScript
7 lines
248 B
JavaScript
|
export default function ({ attr, rule, def }) {
|
||
|
// 优菈核爆
|
||
|
if (attr.cpct < 30 && attr.cdmg > 150) {
|
||
|
return rule('优菈-核爆', { atk: 100, cd: 100, phy: 100 })
|
||
|
}
|
||
|
return def({ atk: 75, cp: 100, cd: 100, phy: 100, recharge: 55 })
|
||
|
}
|