Add weapon filter icons
This commit is contained in:
@@ -33,3 +33,66 @@ export interface WeaponData {
|
||||
originalWeapons?: string[]
|
||||
sources?: SourceData[]
|
||||
}
|
||||
|
||||
export const weaponCategories = [
|
||||
{
|
||||
value: 'pistol',
|
||||
label: 'Pistols',
|
||||
krLabel: '쌍권총',
|
||||
icon: 'weapon-icons/weapon-pistol',
|
||||
},
|
||||
{
|
||||
value: 'katana',
|
||||
label: 'Katanas',
|
||||
krLabel: '태도',
|
||||
icon: 'weapon-icons/weapon-katana',
|
||||
},
|
||||
{
|
||||
value: 'cannon',
|
||||
label: 'Cannons',
|
||||
krLabel: '대포',
|
||||
icon: 'weapon-icons/weapon-cannon',
|
||||
},
|
||||
{
|
||||
value: 'greatsword',
|
||||
label: 'Greatswords',
|
||||
krLabel: '대검',
|
||||
icon: 'weapon-icons/weapon-claymore',
|
||||
},
|
||||
{
|
||||
value: 'cross',
|
||||
label: 'Crosses',
|
||||
krLabel: '십자가',
|
||||
icon: 'weapon-icons/weapon-cross',
|
||||
},
|
||||
{
|
||||
value: 'gauntlet',
|
||||
label: 'Gauntlets',
|
||||
krLabel: '건틀릿',
|
||||
icon: 'weapon-icons/weapon-gauntlet',
|
||||
},
|
||||
{
|
||||
value: 'scythe',
|
||||
label: 'Scythes',
|
||||
krLabel: '낫',
|
||||
icon: 'weapon-icons/weapon-scythe',
|
||||
},
|
||||
{
|
||||
value: 'lance',
|
||||
label: 'Lances',
|
||||
krLabel: '랜스',
|
||||
icon: 'weapon-icons/weapon-lance',
|
||||
},
|
||||
{
|
||||
value: 'bow',
|
||||
label: 'Bows',
|
||||
krLabel: '활',
|
||||
icon: 'weapon-icons/weapon-bow',
|
||||
},
|
||||
{
|
||||
value: 'chakram',
|
||||
label: 'Chakram',
|
||||
krLabel: '차크람',
|
||||
icon: 'weapon-icons/weapon-chakram',
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user