mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-10 17:12:48 +00:00
72 lines
1.5 KiB
TypeScript
72 lines
1.5 KiB
TypeScript
export interface AvatarModel {
|
|
title: string;
|
|
imageSrc: any;
|
|
}
|
|
|
|
export const AvatarList: AvatarModel[] = [
|
|
{
|
|
title: 'dwarf_f',
|
|
imageSrc: require('../assets/avatars/Dwarf_female.gif'),
|
|
},
|
|
{
|
|
title: 'dwarf_m',
|
|
imageSrc: require('../assets/avatars/Dwarf_male.gif'),
|
|
},
|
|
{
|
|
title: 'gnome_f',
|
|
imageSrc: require('../assets/avatars/Gnome_female.gif'),
|
|
},
|
|
{
|
|
title: 'gnome_m',
|
|
imageSrc: require('../assets/avatars/Gnome_male.gif'),
|
|
},
|
|
{
|
|
title: 'human_f',
|
|
imageSrc: require('../assets/avatars/Human_female.gif'),
|
|
},
|
|
{
|
|
title: 'human_m',
|
|
imageSrc: require('../assets/avatars/Human_male.gif'),
|
|
},
|
|
{
|
|
title: 'night_elf_f',
|
|
imageSrc: require('../assets/avatars/Night_elf_female.gif'),
|
|
},
|
|
{
|
|
title: 'night_elf_m',
|
|
imageSrc: require('../assets/avatars/Night_elf_male.gif'),
|
|
},
|
|
{
|
|
title: 'orc_f',
|
|
imageSrc: require('../assets/avatars/Orc_female.gif'),
|
|
},
|
|
{
|
|
title: 'orc_m',
|
|
imageSrc: require('../assets/avatars/Orc_male.gif'),
|
|
},
|
|
{
|
|
title: 'tauren_f',
|
|
imageSrc: require('../assets/avatars/Tauren_female.gif'),
|
|
},
|
|
{
|
|
title: 'tauren_m',
|
|
imageSrc: require('../assets/avatars/Tauren_male.gif'),
|
|
},
|
|
{
|
|
title: 'troll_f',
|
|
imageSrc: require('../assets/avatars/Troll_female.gif'),
|
|
},
|
|
{
|
|
title: 'troll_m',
|
|
imageSrc: require('../assets/avatars/Troll_male.gif'),
|
|
},
|
|
{
|
|
title: 'undead_f',
|
|
imageSrc: require('../assets/avatars/Undead_female.gif'),
|
|
},
|
|
{
|
|
title: 'undead_m',
|
|
imageSrc: require('../assets/avatars/Undead_male.gif'),
|
|
},
|
|
];
|