Files
SPT-Server-Build/Libraries/Core/Models/Spt/Config/HealthConfig.cs
T
2025-01-19 17:45:48 +00:00

34 lines
739 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Config;
public record HealthConfig : BaseConfig
{
[JsonPropertyName("kind")]
public string Kind { get; set; } = "spt-health";
[JsonPropertyName("healthMultipliers")]
public HealthMultipliers HealthMultipliers { get; set; }
[JsonPropertyName("save")]
public HealthSave Save { get; set; }
}
public record HealthMultipliers
{
[JsonPropertyName("death")]
public double Death { get; set; }
[JsonPropertyName("blacked")]
public double Blacked { get; set; }
}
public record HealthSave
{
[JsonPropertyName("health")]
public bool Health { get; set; }
[JsonPropertyName("effects")]
public bool Effects { get; set; }
}