miao-plugin/models/Artifact.js
2022-09-25 02:28:25 +08:00

56 lines
953 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/${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