mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-12 01:52:49 +00:00
client - user account page done
This commit is contained in:
@@ -1,71 +1,6 @@
|
||||
export interface AvatarModel {
|
||||
title: string;
|
||||
imageSrc: any;
|
||||
raceId: number;
|
||||
title: string;
|
||||
}
|
||||
|
||||
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'),
|
||||
},
|
||||
];
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import { AvatarModel } from './avatar';
|
||||
|
||||
export interface CharacterModel {
|
||||
achievementPoints: number;
|
||||
battlegroup: string;
|
||||
@@ -10,4 +12,7 @@ export interface CharacterModel {
|
||||
race: number;
|
||||
realm: string;
|
||||
spec: any;
|
||||
|
||||
avatarList?: AvatarModel[];
|
||||
races?: number[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user