PortalArtifactComponent.cs 526 B

1234567891011121314
  1. using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components;
  4. /// <summary>
  5. /// When activated artifact will spawn an pair portals. First - right in artifact, Second - at random point of station.
  6. /// </summary>
  7. [RegisterComponent, Access(typeof(PortalArtifactSystem))]
  8. public sealed partial class PortalArtifactComponent : Component
  9. {
  10. [DataField]
  11. public EntProtoId PortalProto = "PortalArtifact";
  12. }