Server/project/src/models/eft/match/IGetRaidConfigurationRequestData.ts
chomp 5e9e0736cc update core and WildSpawnTypeNumber.ts to match version 22561 (!85)
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
2023-04-05 21:08:35 +00:00

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
}