mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-12-01 03:10:53 +00:00
7 lines
278 B
JavaScript
7 lines
278 B
JavaScript
export default function ({ attr, weapon, rule, def }) {
|
|
if ( attr.mastery * 2 < attr.atk ) {
|
|
return rule('可莉-纯火', { atk: 85, cpct: 100, cdmg: 100, dmg: 100, recharge: 55 })
|
|
}
|
|
return def({ atk: 75, cpct: 100, cdmg: 100, mastery: 75, dmg: 100, recharge: 30 })
|
|
}
|