using Robust.Shared.GameStates; namespace Content.Shared.Nutrition.Components; [RegisterComponent, NetworkedComponent] public sealed partial class FlavorProfileComponent : Component { /// /// Localized string containing the base flavor of this entity. /// [DataField] public HashSet Flavors { get; private set; } = new(); /// /// Reagent IDs to ignore when processing this flavor profile. Defaults to nutriment. /// [DataField] public HashSet IgnoreReagents { get; private set; } = new() { "Nutriment", "Vitamin", "Protein", }; }