2023-03-03 18:52:31 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2023-07-09 14:49:12 +01:00
|
|
|
|
using System.Collections.Generic;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
|
2024-05-21 19:10:17 +01:00
|
|
|
|
namespace SPT.Custom.Airdrops.Models
|
2023-03-03 18:52:31 +00:00
|
|
|
|
{
|
|
|
|
|
public class AirdropConfigModel
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("airdropChancePercent")]
|
|
|
|
|
public AirdropChancePercent AirdropChancePercent { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("airdropMinStartTimeSeconds")]
|
|
|
|
|
public int AirdropMinStartTimeSeconds { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("airdropMaxStartTimeSeconds")]
|
|
|
|
|
public int AirdropMaxStartTimeSeconds { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("planeMinFlyHeight")]
|
|
|
|
|
public int PlaneMinFlyHeight { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("planeMaxFlyHeight")]
|
|
|
|
|
public int PlaneMaxFlyHeight { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("planeVolume")]
|
|
|
|
|
public float PlaneVolume { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("planeSpeed")]
|
|
|
|
|
public float PlaneSpeed { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("crateFallSpeed")]
|
|
|
|
|
public float CrateFallSpeed { get; set; }
|
2023-07-09 14:49:12 +01:00
|
|
|
|
|
|
|
|
|
[JsonProperty("containerIds")]
|
|
|
|
|
public Dictionary<string, string> ContainerIds { get; set; }
|
2023-03-03 18:52:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class AirdropChancePercent
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("bigmap")]
|
|
|
|
|
public int Bigmap { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("woods")]
|
|
|
|
|
public int Woods { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("lighthouse")]
|
|
|
|
|
public int Lighthouse { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("shoreline")]
|
|
|
|
|
public int Shoreline { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("interchange")]
|
|
|
|
|
public int Interchange { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("reserve")]
|
|
|
|
|
public int Reserve { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("tarkovStreets")]
|
|
|
|
|
public int TarkovStreets { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|