miao-plugin/resources/meta/character/夜兰/artis.js

18 lines
457 B
JavaScript
Raw Normal View History

2022-09-13 18:47:14 +00:00
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, cp: 100, cd: 100, mastery, dmg: 100, recharge: 55 })
}
return def({ hp: 80, cp: 100, cd: 100, dmg: 100, recharge: 55 })
}