miao-plugin/models/Artifact.js
2022-11-24 16:25:04 +08:00

59 lines
978 B
JavaScript

/*
* 圣遗物
* */
import Base from './Base.js'
import { ArtifactSet } from './index.js'
import { artiMap, attrMap } from '../resources/meta/artifact/index.js'
class Artifact extends Base {
constructor (name) {
super()
let cache = this._getCache(`arti:${name}`)
if (cache) {
return cache
}
let data = artiMap[name]
if (!data) {
return false
}
this.name = name
this.meta = data
return this._cache()
}
get artiSet () {
return ArtifactSet.get(this.set)
}
get setName () {
return this.set
}
static get (name) {
if (artiMap[name]) {
return new Artifact(name)
}
return false
}
get img () {
return `meta/artifact/imgs/${this.setName}/${this.idx}.webp`
}
static getSetNameByArti (name) {
let arti = Artifact.get(name)
if (arti) {
return arti.setName
}
return ''
}
static getMeta () {
return {
attrMap
}
}
}
export default Artifact