mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-17 21:22:53 +00:00
11 lines
459 B
JavaScript
11 lines
459 B
JavaScript
|
export default function ({ attr, artis, rule, def }) {
|
||
|
if (artis.is('hp', '4,5')) {
|
||
|
if (artis.is('绝缘4') && artis.is('hp,recharge', 3)) {
|
||
|
return rule('绝缘血牛钟离', { hp: 100, atk: 50, cp: 50, cd: 50, recharge: 100 })
|
||
|
} else if (artis.is('hp', 3)) {
|
||
|
return rule('血牛钟离', { hp: 100, atk: 50, cp: 50, cd: 50, recharge: 50 })
|
||
|
}
|
||
|
}
|
||
|
return def({ hp: 80, atk: 75, cp: 100, cd: 100, dmg: 100, phy: 50, recharge: 55 })
|
||
|
}
|