PainNumbnessComponent.cs 540 B

12345678910111213141516
  1. using Content.Shared.Dataset;
  2. using Robust.Shared.GameStates;
  3. using Robust.Shared.Prototypes;
  4. namespace Content.Shared.Traits.Assorted;
  5. [RegisterComponent, NetworkedComponent]
  6. public sealed partial class PainNumbnessComponent : Component
  7. {
  8. /// <summary>
  9. /// The fluent string prefix to use when picking a random suffix
  10. /// This is only active for those who have the pain numbness component
  11. /// </summary>
  12. [DataField]
  13. public ProtoId<LocalizedDatasetPrototype> ForceSayNumbDataset = "ForceSayNumbDataset";
  14. }