mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 21:00:05 +00:00
c6a70b3a6d
修正圣遗物流派判定的部分错误
18 lines
465 B
JavaScript
18 lines
465 B
JavaScript
export default function ({ attr, weapon, rule, def }) {
|
|
let title = []
|
|
let mastery = 0
|
|
let hp = 80
|
|
if (attr.mastery > 120) {
|
|
title.push('精通')
|
|
mastery = 75
|
|
}
|
|
if (weapon.name === '若水') {
|
|
title.push('若水')
|
|
hp = 100
|
|
}
|
|
if (title.length > 0) {
|
|
return rule(`夜兰-${title.join('')}`, { hp, cpct: 100, cdmg: 100, mastery, dmg: 100, recharge: 55 })
|
|
}
|
|
return def({ hp: 80, cpct: 100, cdmg: 100, dmg: 100, recharge: 55 })
|
|
}
|