miao-plugin/resources/meta/character/夜兰/artis.js
yoimiya-kokomi c6a70b3a6d 修正伤害计算的天赋加成遗漏
修正圣遗物流派判定的部分错误
2022-11-06 12:27:45 +08:00

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 })
}