6
2026-01-24 12:49:55 +03:00

19 lines
721 B
C#

using Content.Shared.Stacks;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Shared._NF.Contraband.Components;
[RegisterComponent]
[Access(typeof(SharedContrabandTurnInSystem))]
public sealed partial class ContrabandPalletConsoleComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("cashType", serverOnly: true, customTypeSerializer:typeof(PrototypeIdSerializer<StackPrototype>))]
public string RewardType = "FrontierUplinkCoin";
[ViewVariables(VVAccess.ReadWrite), DataField(serverOnly: true)]
public string Faction = "NFSD";
[ViewVariables(VVAccess.ReadWrite), DataField]
public string LocStringPrefix = string.Empty;
}