13 lines
375 B
TypeScript
13 lines
375 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
|
||
|
}
|