Add various missing type properties for new map

This commit is contained in:
Dev 2024-01-12 13:00:48 +00:00
parent d92f30d281
commit 3a76757957
5 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,7 @@ export enum ELocationName
BIGMAP = "bigmap", BIGMAP = "bigmap",
WOODS = "Woods", WOODS = "Woods",
SHORELINE = "Shoreline", SHORELINE = "Shoreline",
SANDBOX = "Sandbox",
INTERCHANGE = "Interchange", INTERCHANGE = "Interchange",
LIGHTHOUSE = "Lighthouse", LIGHTHOUSE = "Lighthouse",
LABORATORY = "laboratory", LABORATORY = "laboratory",

View File

@ -37,6 +37,7 @@ export interface AirdropChancePercent
interchange: number; interchange: number;
reserve: number; reserve: number;
tarkovStreets: number; tarkovStreets: number;
sandbox: number;
} }
/** Loot inside crate */ /** Loot inside crate */

View File

@ -9,6 +9,8 @@ export interface IInsuranceConfig extends IBaseConfig
returnChancePercent: Record<string, number>; returnChancePercent: Record<string, number>;
/** Item slots that should never be returned as insurance */ /** Item slots that should never be returned as insurance */
blacklistedEquipment: string[]; blacklistedEquipment: string[];
/** Some slots should always be removed, e.g. 'cartridges' */
slotIdsToAlwaysRemove: string[];
/** Override to control how quickly insurance is processed/returned in second */ /** Override to control how quickly insurance is processed/returned in second */
returnTimeOverrideSeconds: number; returnTimeOverrideSeconds: number;
/** How often server should process insurance in seconds */ /** How often server should process insurance in seconds */

View File

@ -100,6 +100,7 @@ export interface LootMultiplier
tarkovstreets: number; tarkovstreets: number;
terminal: number; terminal: number;
town: number; town: number;
sandbox: number;
} }
export interface IContainerRandomistionSettings export interface IContainerRandomistionSettings

View File

@ -20,6 +20,7 @@ export interface ILocations
terminal?: ILocationData; terminal?: ILocationData;
town?: ILocationData; town?: ILocationData;
woods?: ILocationData; woods?: ILocationData;
sandbox?: ILocationData;
/** Holds a mapping of the linkages between locations on the UI */ /** Holds a mapping of the linkages between locations on the UI */
base?: ILocationsBase; base?: ILocationsBase;
} }