using Content.Shared.Kitchen.Components; using Content.Shared.Nyanotrasen.Kitchen.Components; namespace Content.Server.Kitchen.Components { [RegisterComponent] //This line appears to be deprecated. [ComponentReference(typeof(SharedDeepFriedComponent))] public sealed partial class DeepFriedComponent : SharedDeepFriedComponent { /// /// What is the item's base price multiplied by? /// [ViewVariables(VVAccess.ReadWrite)] [DataField("priceCoefficient")] public float PriceCoefficient { get; set; } = 1.0f; /// /// What was the entity's original name before any modification? /// [ViewVariables(VVAccess.ReadWrite)] [DataField("originalName")] public string? OriginalName { get; set; } } }