Co-authored-by: rhailrake <splatt.pr@gmail.com> Co-authored-by: haiwwkes <49613070+rhailrake@users.noreply.github.com>
16 lines
702 B
C#
16 lines
702 B
C#
namespace Content.Client._Sunrise.InteractionsPanel.Models;
|
|
|
|
public sealed class CustomInteraction
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string IconId { get; set; } = string.Empty;
|
|
public string CategoryId { get; set; } = string.Empty;
|
|
public List<string> InteractionMessages { get; set; } = new();
|
|
public List<string> SoundIds { get; set; } = new();
|
|
public bool SpawnsEffect { get; set; }
|
|
public float EffectChance { get; set; }
|
|
public string EntityEffectId { get; set; } = string.Empty;
|
|
public float Cooldown { get; set; } = 3.0f;
|
|
}
|