2024-04-16 18:29:40 +00:00
|
|
|
namespace LootDumpProcessor.Model.Tarkov;
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
|
|
public class Category
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string ParentId { get; set; }
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public string Color { get; set; }
|
|
|
|
public string Order { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class HandbookItem
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string ParentId { get; set; }
|
|
|
|
public int Price { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class HandbookRoot
|
|
|
|
{
|
|
|
|
public List<Category> Categories { get; set; }
|
|
|
|
public List<HandbookItem> Items { get; set; }
|
2023-08-13 16:18:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public class StaticContainerRoot
|
|
|
|
{
|
|
|
|
public decimal probability { get; set; }
|
|
|
|
public StaticContainerTemplate template { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class StaticContainerTemplate
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public decimal SpawnChance { get; set; }
|
|
|
|
public bool IsAlwaysSpawn { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
}
|