mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-17 05:08:14 +00:00
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
|
export default function ({ artis, rule, def }) {
|
||
|
if (artis.is('冰套4')) {
|
||
|
return rule('永冻甘雨', { atk: 75, cp: 100, cd: 100, dmg: 100, recharge: 75 })
|
||
|
}
|
||
|
return def({ atk: 75, cp: 100, cd: 100, mastery: 75, dmg: 100 })
|
||
|
}
|