Delta-v/Content.Server/Medical/Components/MedicalScannerComponent.cs

23 lines
780 B
C#

using Content.Shared.Construction.Prototypes;
using Content.Shared.DragDrop;
using Content.Shared.MedicalScanner;
using Robust.Shared.Containers;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Medical.Components
{
[RegisterComponent]
public sealed partial class MedicalScannerComponent : SharedMedicalScannerComponent
{
public const string ScannerPort = "MedicalScannerReceiver";
public ContainerSlot BodyContainer = default!;
public EntityUid? ConnectedConsole;
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float CloningFailChanceMultiplier = 1f;
// Nyano, needed for Metem Machine.
public float MetemKarmaBonus = 0.25f;
}
}