2022-08-18 10:13:42 +00:00
|
|
|
|
import lodash from 'lodash'
|
2023-02-09 16:57:25 +00:00
|
|
|
|
import AvatarData from './AvatarData.js'
|
2023-02-06 18:08:12 +00:00
|
|
|
|
import { Data } from '../components/index.js'
|
2023-02-09 16:57:25 +00:00
|
|
|
|
import { ProfileArtis, ProfileDmg } from './index.js'
|
2022-11-20 20:45:27 +00:00
|
|
|
|
import AttrCalc from './profile-lib/AttrCalc.js'
|
2022-08-18 10:13:42 +00:00
|
|
|
|
|
2023-02-09 16:57:25 +00:00
|
|
|
|
export default class ProfileData extends AvatarData {
|
2023-02-08 20:55:54 +00:00
|
|
|
|
constructor (ds = {}) {
|
2023-02-09 16:57:25 +00:00
|
|
|
|
super(ds)
|
2023-02-08 20:55:54 +00:00
|
|
|
|
this.calcAttr()
|
2022-11-24 16:31:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-09 16:57:25 +00:00
|
|
|
|
initArtis () {
|
|
|
|
|
this.artis = new ProfileArtis(this.id, this.elem)
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-08 20:55:54 +00:00
|
|
|
|
static create (ds) {
|
|
|
|
|
let profile = new ProfileData(ds)
|
2022-11-24 16:31:36 +00:00
|
|
|
|
if (!profile) {
|
|
|
|
|
return false
|
2022-11-22 20:25:36 +00:00
|
|
|
|
}
|
2022-11-24 16:31:36 +00:00
|
|
|
|
return profile
|
2022-08-18 10:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-09 16:57:25 +00:00
|
|
|
|
setAttr (ds) {
|
|
|
|
|
this.attr = lodash.extend(Data.getData(ds, 'atk,atkBase,def,defBase,hp,hpBase,mastery,recharge'), {
|
|
|
|
|
heal: ds.heal || ds.hInc || 0,
|
|
|
|
|
cpct: ds.cpct || ds.cRate,
|
|
|
|
|
cdmg: ds.cdmg || ds.cDmg,
|
|
|
|
|
dmg: ds.dmg || ds.dmgBonus || 0,
|
|
|
|
|
phy: ds.phy || ds.phyBonus || 0
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-26 08:12:32 +00:00
|
|
|
|
calcAttr () {
|
|
|
|
|
this._attr = AttrCalc.create(this)
|
|
|
|
|
this.attr = this._attr.calc()
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-18 10:13:42 +00:00
|
|
|
|
setArtis (ds = false) {
|
2023-02-09 16:57:25 +00:00
|
|
|
|
this.artis?.setProfile(this, ds.artis?.artis || ds.artis || ds)
|
2022-08-18 10:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-18 23:08:16 +00:00
|
|
|
|
// 判断当前profileData是否具有有效数据
|
2022-08-18 10:13:42 +00:00
|
|
|
|
get hasData () {
|
2023-02-09 16:57:25 +00:00
|
|
|
|
return this.isProfile
|
2022-08-18 10:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-09 16:57:25 +00:00
|
|
|
|
get splashCostume () {
|
2022-11-20 20:45:27 +00:00
|
|
|
|
let costume = this._costume
|
|
|
|
|
if (lodash.isArray(costume)) {
|
|
|
|
|
costume = costume[0]
|
|
|
|
|
}
|
2022-09-08 20:34:32 +00:00
|
|
|
|
let talent = this.talent ? lodash.map(this.talent, (ds) => ds.original).join('') : ''
|
2022-11-17 16:54:45 +00:00
|
|
|
|
if (this.cons === 6 || ['ACE', 'ACE²'].includes(this.artis?.markClass) || talent === '101010') {
|
2022-11-20 20:45:27 +00:00
|
|
|
|
return [costume, 'super']
|
2022-09-05 17:05:06 +00:00
|
|
|
|
}
|
2022-11-20 20:45:27 +00:00
|
|
|
|
return [costume, 'normal']
|
2022-09-05 17:05:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-18 23:08:16 +00:00
|
|
|
|
// 获取当前profileData的圣遗物评分,withDetail=false仅返回简略信息
|
2022-08-18 10:13:42 +00:00
|
|
|
|
getArtisMark (withDetail = true) {
|
2022-09-08 20:34:32 +00:00
|
|
|
|
if (this.hasData) {
|
2022-09-08 09:38:15 +00:00
|
|
|
|
return this.artis.getMarkDetail(withDetail)
|
|
|
|
|
}
|
|
|
|
|
return {}
|
2022-08-18 10:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-08 22:04:08 +00:00
|
|
|
|
get hasDmg () {
|
|
|
|
|
return this.hasData && !!ProfileDmg.dmgRulePath(this.name)
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-18 23:08:16 +00:00
|
|
|
|
// 计算当前profileData的伤害信息
|
2022-08-18 10:13:42 +00:00
|
|
|
|
async calcDmg ({ enemyLv = 91, mode = 'profile', dmgIdx = 0 }) {
|
|
|
|
|
if (!this.dmg) {
|
2022-08-22 20:53:31 +00:00
|
|
|
|
let ds = this.getData('id,level,attr,cons,artis:artis.sets')
|
|
|
|
|
ds.talent = lodash.mapValues(this.talent, 'level')
|
|
|
|
|
ds.weapon = Data.getData(this.weapon, 'name,affix')
|
|
|
|
|
this.dmg = new ProfileDmg(ds)
|
2022-08-18 10:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
return await this.dmg.calcData({ enemyLv, mode, dmgIdx })
|
|
|
|
|
}
|
|
|
|
|
}
|