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

28 lines
486 B
TypeScript
Raw Normal View History

import { Skills } from "@spt-aki/models/eft/common/tables/IBotBase";
2023-03-03 16:23:46 +01:00
2023-11-16 02:35:05 +01:00
export interface IPlayerIncrementSkillLevelRequestData
2023-03-03 16:23:46 +01:00
{
2023-11-16 02:35:05 +01:00
_id: string;
experience: number;
quests: any[];
ragFairOffers: any[];
builds: any[];
items: Items;
production: Production;
skills: Skills;
traderRelations: TraderRelations;
2023-03-03 16:23:46 +01:00
}
2023-11-16 02:35:05 +01:00
export interface Items
2023-03-03 16:23:46 +01:00
{
2023-11-16 02:35:05 +01:00
new: any[];
change: any[];
del: any[];
2023-03-03 16:23:46 +01:00
}
2023-11-16 02:35:05 +01:00
export interface Production
{}
2023-03-03 16:23:46 +01:00
2023-11-16 02:35:05 +01:00
export interface TraderRelations
{}