19 lines
721 B
C#
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;
|
|
}
|