plugins/popn@asphyxia/models/profile.ts
2020-12-12 15:09:57 +01:00

40 lines
551 B
TypeScript

export interface Profile {
collection: 'profile',
name: string;
stamps: {
[ver: string]: {
[stamp_id: string]: number;
};
};
medals: {
[ver: string]: {
[id: string]: {
level: number;
exp: number;
set_count: number;
get_count: number;
};
};
};
items: {
[ver: string]: {
[key: string]: number;
};
};
charas: {
[ver: string]: {
[chara_id: string]: number;
};
};
extras: {
[ver: string]: {
[key: string]: any;
};
};
}