Co-authored-by: Kaeno <> Co-authored-by: Dev <dev@noreply.dev.sp-tarkov.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/85
71 lines
1.6 KiB
TypeScript
71 lines
1.6 KiB
TypeScript
export interface IGetRaidConfigurationRequestData
|
|
{
|
|
keyId: string
|
|
side: string
|
|
location: string
|
|
timeVariant: string
|
|
raidMode: string
|
|
metabolismDisabled: boolean
|
|
playersSpawnPlace: string
|
|
timeAndWeatherSettings: TimeAndWeatherSettings
|
|
botSettings: BotSettings
|
|
wavesSettings: WavesSettings
|
|
}
|
|
|
|
// {
|
|
// "keyId": "",
|
|
// "side": "Pmc",
|
|
// "location": "factory4_day",
|
|
// "timeVariant": "CURR", or "PAST"
|
|
// "raidMode": "Local",
|
|
// "metabolismDisabled": false,
|
|
// "playersSpawnPlace": "SamePlace",
|
|
// "timeAndWeatherSettings": {
|
|
// "isRandomTime": false,
|
|
// "isRandomWeather": false,
|
|
// "cloudinessType": "Clear",
|
|
// "rainType": "NoRain",
|
|
// "windType": "Light",
|
|
// "fogType": "NoFog",
|
|
// "timeFlowType": "x1",
|
|
// "hourOfDay": -1
|
|
// },
|
|
// "botSettings": {
|
|
// "isScavWars": false,
|
|
// "botAmount": "AsOnline"
|
|
// },
|
|
// "wavesSettings": {
|
|
// "botAmount": "AsOnline",
|
|
// "botDifficulty": "AsOnline",
|
|
// "isBosses": true,
|
|
// "isTaggedAndCursed": false
|
|
// }
|
|
// }
|
|
|
|
|
|
export interface TimeAndWeatherSettings
|
|
{
|
|
isRandomTime: boolean
|
|
isRandomWeather: boolean
|
|
cloudinessType: string
|
|
rainType: string
|
|
windType: string
|
|
fogType: string
|
|
timeFlowType: string
|
|
hourOfDay: number
|
|
}
|
|
|
|
export interface BotSettings
|
|
{
|
|
isScavWars: boolean
|
|
botAmount: string
|
|
}
|
|
|
|
export interface WavesSettings
|
|
{
|
|
botAmount: string
|
|
botDifficulty: string
|
|
isBosses: boolean
|
|
isTaggedAndCursed: boolean
|
|
}
|
|
|