miao-plugin/models/Weapon.js

65 lines
1.2 KiB
JavaScript
Raw Normal View History

import Base from './Base.js'
import { Data } from '../components/index.js'
import { data as weaponData, abbr } from '../resources/meta/weapon/index.js'
class Weapon extends Base {
constructor (name) {
super(name)
let meta = weaponData[name]
if (!meta) {
return false
}
let cache = this._getCache(`weapon:${name}`)
if (cache) {
return cache
}
this.name = meta.name
this.meta = meta
this.type = meta.type
this.star = meta.star
return this._cache()
}
get abbr () {
2022-09-23 22:57:42 +00:00
return abbr[this.name] || this.name
}
get title () {
return this.name
}
get img () {
return `meta/weapon/${this.type}/${this.name}/icon.webp`
}
get icon () {
return this.img
}
2022-11-20 20:45:27 +00:00
get detail () {
return this.getDetail()
}
getDetail () {
if (this._detail) {
return this._detail
}
const path = 'resources/meta/weapon'
try {
this._detail = Data.readJSON(`${path}/${this.type}/${this.name}/data.json`)
} catch (e) {
console.log(e)
}
return this._detail
}
static get (name) {
if (weaponData[name]) {
2022-11-20 20:45:27 +00:00
return new Weapon(name)
}
return false
}
}
export default Weapon