mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-18 05:30:32 +00:00
6 lines
265 B
JavaScript
6 lines
265 B
JavaScript
|
export default function ({ attr, rule, def }) {
|
||
|
if (attr.recharge > 240) {
|
||
|
return rule('温迪-充能', { atk: 75, cp: 100, cd: 100, mastery: 75, dmg: 100, recharge: 100 })
|
||
|
}
|
||
|
return def({ atk: 75, cp: 100, cd: 100, mastery: 75, dmg: 100, recharge: 75 })
|
||
|
}
|