mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 21:00:05 +00:00
11 lines
446 B
JavaScript
11 lines
446 B
JavaScript
export default function ({ attr, artis, rule, def }) {
|
|
// 宵宫纯色流派
|
|
if (attr.mastery < 50 && attr.cpct * 2 + attr.cdmg > 320) {
|
|
return rule('宵宫-纯火', { atk: 85, cpct: 100, cdmg: 100, dmg: 100 })
|
|
}
|
|
if (attr.mastery > 200 && artis.is('mastery', 3)) {
|
|
return rule('宵宫-精通', { atk: 75, cpct: 100, cdmg: 100, mastery: 100, dmg: 100 })
|
|
}
|
|
return def({ atk: 75, cpct: 100, cdmg: 100, mastery: 75, dmg: 100 })
|
|
}
|