2023-10-19 17:21:17 +00:00
|
|
|
import { IBaseRepairActionDataRequest } from "@spt-aki/models/eft/repair/IBaseRepairActionDataRequest";
|
2023-03-03 15:23:46 +00:00
|
|
|
|
|
|
|
export interface IRepairActionDataRequest extends IBaseRepairActionDataRequest
|
|
|
|
{
|
2023-11-15 20:35:05 -05:00
|
|
|
Action: "Repair";
|
|
|
|
repairKitsInfo: RepairKitsInfo[];
|
|
|
|
target: string; // item to repair
|
2023-03-03 15:23:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface RepairKitsInfo
|
|
|
|
{
|
2023-11-15 20:35:05 -05:00
|
|
|
_id: string; // id of repair kit to use
|
|
|
|
count: number; // amout of units to reduce kit by
|
|
|
|
}
|