29 lines
975 B
C#
29 lines
975 B
C#
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server.Speech.Components;
|
|
|
|
/// <summary>
|
|
/// Applies accent to user while they wear entity as a clothing.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class AddAccentClothingComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Component name for accent that will be applied.
|
|
/// </summary>
|
|
[DataField("accent", required: true)]
|
|
public string Accent = default!;
|
|
|
|
/// <summary>
|
|
/// What <see cref="ReplacementAccentPrototype"/> to use.
|
|
/// Will be applied only with <see cref="ReplacementAccentComponent"/>.
|
|
/// </summary>
|
|
[DataField("replacement", customTypeSerializer: typeof(PrototypeIdSerializer<ReplacementAccentPrototype>))]
|
|
public string? ReplacementPrototype;
|
|
|
|
/// <summary>
|
|
/// Is that clothing is worn and affecting someones accent?
|
|
/// </summary>
|
|
public bool IsActive = false;
|
|
}
|