Add various missing type properties for new map
This commit is contained in:
parent
d92f30d281
commit
3a76757957
@ -5,6 +5,7 @@ export enum ELocationName
|
||||
BIGMAP = "bigmap",
|
||||
WOODS = "Woods",
|
||||
SHORELINE = "Shoreline",
|
||||
SANDBOX = "Sandbox",
|
||||
INTERCHANGE = "Interchange",
|
||||
LIGHTHOUSE = "Lighthouse",
|
||||
LABORATORY = "laboratory",
|
||||
|
@ -37,6 +37,7 @@ export interface AirdropChancePercent
|
||||
interchange: number;
|
||||
reserve: number;
|
||||
tarkovStreets: number;
|
||||
sandbox: number;
|
||||
}
|
||||
|
||||
/** Loot inside crate */
|
||||
|
@ -9,6 +9,8 @@ export interface IInsuranceConfig extends IBaseConfig
|
||||
returnChancePercent: Record<string, number>;
|
||||
/** Item slots that should never be returned as insurance */
|
||||
blacklistedEquipment: string[];
|
||||
/** Some slots should always be removed, e.g. 'cartridges' */
|
||||
slotIdsToAlwaysRemove: string[];
|
||||
/** Override to control how quickly insurance is processed/returned in second */
|
||||
returnTimeOverrideSeconds: number;
|
||||
/** How often server should process insurance in seconds */
|
||||
|
@ -100,6 +100,7 @@ export interface LootMultiplier
|
||||
tarkovstreets: number;
|
||||
terminal: number;
|
||||
town: number;
|
||||
sandbox: number;
|
||||
}
|
||||
|
||||
export interface IContainerRandomistionSettings
|
||||
|
@ -20,6 +20,7 @@ export interface ILocations
|
||||
terminal?: ILocationData;
|
||||
town?: ILocationData;
|
||||
woods?: ILocationData;
|
||||
sandbox?: ILocationData;
|
||||
/** Holds a mapping of the linkages between locations on the UI */
|
||||
base?: ILocationsBase;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user