增加一些武器

This commit is contained in:
cebgcontract 2022-02-28 11:41:47 +08:00
parent 58c3669287
commit 7aba2f8062
8 changed files with 7 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -27,9 +27,13 @@ import { AppModule, DeviceType } from '@/store/modules/app'
})
export default class extends Vue {
private heroNames = [
'assault',
'assault-rifle',
'dragon-firethrower',
'frost-machine-gun',
'lightning',
'shotgun',
'sniper'
'single-shot-rocket-launcher',
'sniper-rifle'
]
private datas:IHeroData[] = []
@ -42,7 +46,7 @@ export default class extends Vue {
for (let i = 0; i < this.heroNames.length; i++) {
this.datas.push({
name: this.heroNames[i],
img: require(`@/assets/202202/nft/${this.heroNames[i]}.png`)
img: require(`@/assets/202202/weapons/${this.heroNames[i]}.png`)
})
}
}