2025-01-11 10:52:23 +03:00
|
|
|
|
namespace LootDumpProcessor.Model.Input;
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
2025-01-11 10:52:23 +03:00
|
|
|
|
public class AirdropParameter
|
2023-08-12 19:08:38 +01:00
|
|
|
|
{
|
2025-01-11 10:52:23 +03:00
|
|
|
|
public int? PlaneAirdropStartMin { get; set; }
|
|
|
|
|
public int? PlaneAirdropStartMax { get; set; }
|
|
|
|
|
public int? PlaneAirdropEnd { get; set; }
|
|
|
|
|
public float? PlaneAirdropChance { get; set; }
|
|
|
|
|
public int? PlaneAirdropMax { get; set; }
|
|
|
|
|
public int? PlaneAirdropCooldownMin { get; set; }
|
|
|
|
|
public int? PlaneAirdropCooldownMax { get; set; }
|
|
|
|
|
public int? AirdropPointDeactivateDistance { get; set; }
|
|
|
|
|
public int? MinPlayersCountToSpawnAirdrop { get; set; }
|
|
|
|
|
public int? UnsuccessfulTryPenalty { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
|
}
|