fish-station/Content.Client/_Sunrise/InteractionsPanel/Models/CustomInteraction.cs
SplikZerys 12c008f0f5
INTERACTION PANEL (#2551)
Co-authored-by: rhailrake <splatt.pr@gmail.com>
Co-authored-by: haiwwkes <49613070+rhailrake@users.noreply.github.com>
2025-07-13 16:48:32 -04:00

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;
}