Server/project/src/models/spt/config/IInsuranceConfig.ts
CZPZ 8c37bc7837 Lint: ts files (!82)
Co-authored-by: alimoncul <alimoncul@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/82
Co-authored-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
Co-committed-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
2023-03-22 14:31:05 +00:00

13 lines
376 B
TypeScript

import { IBaseConfig } from "./IBaseConfig";
export interface IInsuranceConfig extends IBaseConfig
{
kind: "aki-insurance"
insuranceMultiplier: Record<string, number>
returnChancePercent: Record<string, number>
blacklistedEquipment: string[]
slotIdsWithChanceOfNotReturning: string[]
returnTimeOverrideSeconds: number
runIntervalSeconds: number
}