miao-plugin/resources/meta/character/刻晴/artis_user.js
panganqi 3aa2456e8f
多流派 (#180)
* fisrt commit

* del copy files

* change filemode

* Delete profile-detail-Copy1.html

* Delete profile-stat-Copy1.css

* Update artis_user.js
2022-09-14 01:56:02 +08:00

12 lines
563 B
JavaScript

export default function ({ attr, weapon, rule, def }) {
// 激化精通璃月雷神,具体数值待定
if (attr.mastery > 80) {
return rule('刻晴-激化', { atk: 60, cp: 100, cd: 100, mastery: 40, dmg: 100, recharge: 0 })
}
if (weapon.name === '磐岩结绿' && weapon.affix >= 1) {
let temp = 35 + 5*weapon.affix
return rule('刻晴-绿剑', { hp: temp, atk: 60, cp: 100, cd: 100, mastery: 40, dmg: 100, recharge: 0 })
}
return def({ hp: 0, atk: 75, def: 0, cp: 100, cd: 100, mastery: 0, dmg: 100, phy: 100, recharge: 0, heal: 0 })
}