Files
SPT-Server-Build/Core/Models/Spt/Config/PmcChatResponse.cs
T
2025-01-17 18:13:37 +00:00

34 lines
995 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Config;
public record PmcChatResponse : BaseConfig
{
[JsonPropertyName("kind")]
public string Kind { get; set; } = "spt-pmcchatresponse";
[JsonPropertyName("victim")]
public ResponseSettings Victim { get; set; }
[JsonPropertyName("killer")]
public ResponseSettings Killer { get; set; }
}
public record ResponseSettings
{
[JsonPropertyName("responseChancePercent")]
public double ResponseChancePercent { get; set; }
[JsonPropertyName("responseTypeWeights")]
public Dictionary<string, double> ResponseTypeWeights { get; set; }
[JsonPropertyName("stripCapitalisationChancePercent")]
public double StripCapitalisationChancePercent { get; set; }
[JsonPropertyName("allCapsChancePercent")]
public double AllCapsChancePercent { get; set; }
[JsonPropertyName("appendBroToMessageEndChancePercent")]
public double AppendBroToMessageEndChancePercent { get; set; }
}