37 lines
619 B
TypeScript
37 lines
619 B
TypeScript
|
export interface Config
|
||
|
{
|
||
|
DebugMode: boolean
|
||
|
raid: Raid
|
||
|
quests: Quests
|
||
|
weapons: Weapons
|
||
|
}
|
||
|
|
||
|
export interface Quests
|
||
|
{
|
||
|
onlyFoundInRaid: boolean
|
||
|
}
|
||
|
|
||
|
export interface Raid
|
||
|
{
|
||
|
carExtractBaseStandingGain: number
|
||
|
chompiesBossFix: boolean
|
||
|
fixOpenZones: boolean
|
||
|
scavExtractGain: number
|
||
|
timeLimit: number
|
||
|
aiAmount: string
|
||
|
aiDifficulty: string
|
||
|
bossEnabled: boolean
|
||
|
scavWars: boolean
|
||
|
taggedAndCursed: boolean
|
||
|
enablePve: boolean
|
||
|
}
|
||
|
|
||
|
export interface Weapons
|
||
|
{
|
||
|
jam: boolean
|
||
|
misfeed: boolean
|
||
|
misfire: boolean
|
||
|
overheat: boolean
|
||
|
slide: boolean
|
||
|
}
|
||
|
|