增加一些武器
BIN
src/assets/202202/weapons/assault-rifle.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
src/assets/202202/weapons/dragon-firethrower.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
src/assets/202202/weapons/frost-machine-gun.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
src/assets/202202/weapons/lightning.png
Normal file
After Width: | Height: | Size: 151 KiB |
BIN
src/assets/202202/weapons/shotgun.png
Normal file
After Width: | Height: | Size: 157 KiB |
BIN
src/assets/202202/weapons/single-shot-rocket-launcher.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
src/assets/202202/weapons/sniper-rifle.png
Normal file
After Width: | Height: | Size: 37 KiB |
@ -27,9 +27,13 @@ import { AppModule, DeviceType } from '@/store/modules/app'
|
|||||||
})
|
})
|
||||||
export default class extends Vue {
|
export default class extends Vue {
|
||||||
private heroNames = [
|
private heroNames = [
|
||||||
'assault',
|
'assault-rifle',
|
||||||
|
'dragon-firethrower',
|
||||||
|
'frost-machine-gun',
|
||||||
|
'lightning',
|
||||||
'shotgun',
|
'shotgun',
|
||||||
'sniper'
|
'single-shot-rocket-launcher',
|
||||||
|
'sniper-rifle'
|
||||||
]
|
]
|
||||||
|
|
||||||
private datas:IHeroData[] = []
|
private datas:IHeroData[] = []
|
||||||
@ -42,7 +46,7 @@ export default class extends Vue {
|
|||||||
for (let i = 0; i < this.heroNames.length; i++) {
|
for (let i = 0; i < this.heroNames.length; i++) {
|
||||||
this.datas.push({
|
this.datas.push({
|
||||||
name: this.heroNames[i],
|
name: this.heroNames[i],
|
||||||
img: require(`@/assets/202202/nft/${this.heroNames[i]}.png`)
|
img: require(`@/assets/202202/weapons/${this.heroNames[i]}.png`)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|