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