mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
37 lines
943 B
JavaScript
37 lines
943 B
JavaScript
import { Avatar, Weapon } from '#miao.models'
|
|
|
|
export const ProfileWeapon = {
|
|
async calc (profile, game = 'gs') {
|
|
let ret = []
|
|
await Weapon.forEach(async (w) => {
|
|
let weaponRet = w.getData('name,star,abbr,icon')
|
|
weaponRet.dmgs = []
|
|
for (let affix of [1, 5]) {
|
|
if (affix === 5 && w.maxAffix !== 5) {
|
|
continue
|
|
}
|
|
let tempProfile = new Avatar({
|
|
...profile.getData('uid,id,level,cons,fetter,elem,promote,talent,artis'),
|
|
dataSource: 'change'
|
|
}, game, false)
|
|
|
|
tempProfile.setWeapon({
|
|
name: w.name,
|
|
star: w.star,
|
|
level: w.maxLv,
|
|
promote: w.maxPromote,
|
|
affix
|
|
})
|
|
tempProfile.calcAttr()
|
|
weaponRet.dmgs.push({
|
|
affix,
|
|
...await tempProfile.calcDmg({ mode: 'single' })
|
|
})
|
|
}
|
|
ret.push(weaponRet)
|
|
}, profile?.weapon?.type)
|
|
return ret
|
|
}
|
|
|
|
}
|