MedicalScannerComponent.cs 681 B

12345678910111213141516171819
  1. using Content.Shared.Construction.Prototypes;
  2. using Content.Shared.DragDrop;
  3. using Content.Shared.MedicalScanner;
  4. using Robust.Shared.Containers;
  5. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
  6. namespace Content.Server.Medical.Components
  7. {
  8. [RegisterComponent]
  9. public sealed partial class MedicalScannerComponent : SharedMedicalScannerComponent
  10. {
  11. public const string ScannerPort = "MedicalScannerReceiver";
  12. public ContainerSlot BodyContainer = default!;
  13. public EntityUid? ConnectedConsole;
  14. [DataField, ViewVariables(VVAccess.ReadWrite)]
  15. public float CloningFailChanceMultiplier = 1f;
  16. }
  17. }