miao-plugin/resources/meta-gs/character/胡桃/artis.js

8 lines
282 B
JavaScript
Raw Normal View History

2022-09-13 18:47:14 +00:00
export default function ({ attr, rule, def }) {
// 核爆胡桃
if (attr.cpct < 15 && attr.cdmg > 280) {
return rule('胡桃-核爆', { hp: 90, atk: 50, cdmg: 100, mastery: 90, dmg: 100 })
2022-09-13 18:47:14 +00:00
}
return def({ hp: 80, atk: 50, cpct: 100, cdmg: 100, mastery: 75, dmg: 100 })
2022-09-13 18:47:14 +00:00
}