51 lines
945 B
TypeScript
Raw Normal View History

export interface ICwxConfig
2022-08-20 13:36:46 +01:00
{
showLogs: boolean
globalsConfig: GlobalsConfig
ragfairConfig: RagfairConfig
locationConfig: LocationConfig
inraidConfig: InraidConfig
itemsConfig: ItemsConfig
airdropConfig: AirdropConfig
2022-08-20 13:36:46 +01:00
}
export interface GlobalsConfig
2022-08-20 13:36:46 +01:00
{
noFallDamage: boolean
openFlea: boolean
quickScav: boolean
}
export interface RagfairConfig
2022-08-20 13:36:46 +01:00
{
staticTrader: boolean
roublesOnly: boolean
disableBSGBlacklist: boolean
}
export interface LocationConfig
2022-08-20 13:36:46 +01:00
{
turnLootOff: boolean
}
export interface InraidConfig
2022-08-20 13:36:46 +01:00
{
turnPVEOff: boolean
2022-12-25 15:41:36 +00:00
extendRaidTimes: boolean
2022-08-26 20:37:27 +01:00
}
export interface ItemsConfig
2022-08-26 20:37:27 +01:00
{
changeShrapProps: boolean
changeMaxAmmoForKS23: boolean
2022-09-17 20:46:11 +01:00
removeDevFromBlacklist: boolean
2022-12-25 15:41:36 +00:00
inspectAllItems: boolean
}
export interface AirdropConfig
{
enableAllTheTime: boolean
changeFlightHeight: boolean
changeStartTime: boolean
changePlaneVolume: boolean
2022-08-20 13:36:46 +01:00
}