0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00
server/project/src/models/eft/hideout/IHideoutScavCase.ts

24 lines
419 B
TypeScript
Raw Normal View History

import { MinMax } from "@spt-aki/models/common/MinMax";
2023-03-03 15:23:46 +00:00
2023-11-15 20:35:05 -05:00
export interface IHideoutScavCase
2023-03-03 15:23:46 +00:00
{
2023-11-15 20:35:05 -05:00
_id: string;
ProductionTime: number;
Requirements: Requirement[];
EndProducts: EndProducts;
2023-03-03 15:23:46 +00:00
}
2023-11-15 20:35:05 -05:00
export interface Requirement
2023-03-03 15:23:46 +00:00
{
2023-11-15 20:35:05 -05:00
templateId: string;
count: number;
isFunctional: boolean;
type: string;
2023-03-03 15:23:46 +00:00
}
2023-11-15 20:35:05 -05:00
export interface EndProducts
2023-03-03 15:23:46 +00:00
{
2023-11-15 20:35:05 -05:00
Common: MinMax;
Rare: MinMax;
Superrare: MinMax;
2023-03-03 15:23:46 +00:00
}