mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
8 lines
292 B
JavaScript
8 lines
292 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 })
|
|
}
|