Server/project/src/models/eft/player/IPlayerIncrementSkillLevelRequestData.ts

27 lines
461 B
TypeScript
Raw Normal View History

2023-03-03 16:23:46 +01:00
import { Skills } from "../common/tables/IBotBase"
export interface IPlayerIncrementSkillLevelRequestData
{
_id: string
experience: number
quests: any[]
ragFairOffers: any[]
builds: any[]
items: Items
production: Production
skills: Skills
traderRelations: TraderRelations
}
export interface Items
{
new: any[]
change: any[]
del: any[]
}
export interface Production
{ }
export interface TraderRelations
{ }