CloningConsoleComponent.cs 663 B

123456789101112131415161718192021222324
  1. namespace Content.Server.Cloning.Components
  2. {
  3. [RegisterComponent]
  4. public sealed partial class CloningConsoleComponent : Component
  5. {
  6. public const string ScannerPort = "MedicalScannerSender";
  7. public const string PodPort = "CloningPodSender";
  8. [ViewVariables]
  9. public EntityUid? GeneticScanner = null;
  10. [ViewVariables]
  11. public EntityUid? CloningPod = null;
  12. /// Maximum distance between console and one if its machines
  13. [DataField("maxDistance")]
  14. public float MaxDistance = 4f;
  15. public bool GeneticScannerInRange = true;
  16. public bool CloningPodInRange = true;
  17. }
  18. }