mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 21:00:05 +00:00
8 lines
283 B
JavaScript
8 lines
283 B
JavaScript
export default function ({ attr, rule, def }) {
|
|
// 激化精通璃月雷神,具体数值待定
|
|
if (attr.mastery > 80) {
|
|
return rule('刻晴-精通', { atk: 75, cp: 100, cd: 100, mastery: 75, dmg: 100 })
|
|
}
|
|
return def({ atk: 75, cp: 100, cd: 100, dmg: 100, phy: 100 })
|
|
}
|