2023-10-19 17:21:17 +00:00
|
|
|
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
|
|
|
}
|