using Content.Shared.Store; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Traitor.Uplink.SurplusBundle; /// /// Fill crate with a random uplink items. /// [RegisterComponent] public sealed partial class SurplusBundleComponent : Component { /// /// Total price of all content inside bundle. /// [ViewVariables(VVAccess.ReadOnly)] [DataField("totalPrice")] public int TotalPrice = 20; /// /// The preset that will be used to get all the listings. /// Currently just defaults to the basic uplink. /// [DataField("storePreset", customTypeSerializer: typeof(PrototypeIdSerializer))] public string StorePreset = "StorePresetUplink"; }