14 lines
344 B
C#
14 lines
344 B
C#
using Content.Server.StationEvents.Events;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent, Access(typeof(RandomSentienceRule))]
|
|
public sealed partial class SentienceTargetComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public string FlavorKind = default!;
|
|
|
|
[DataField]
|
|
public float Weight = 1.0f;
|
|
}
|