Files
wwdpublic/Content.Server/_White/Teleporter/ExperimentalTeleporterComponent.cs
2024-09-27 09:12:53 +07:00

29 lines
731 B
C#

using Robust.Shared.Audio;
namespace Content.Server._White.Teleporter;
[RegisterComponent]
public sealed partial class ExperimentalTeleporterComponent : Component
{
[DataField]
public int MinTeleportRange = 3;
[DataField]
public int MaxTeleportRange = 8;
[DataField]
public int EmergencyLength = 4;
[DataField]
public List<int> RandomRotations = new() {90, -90};
[DataField]
public string? TeleportInEffect = "ExperimentalTeleporterInEffect";
[DataField]
public string? TeleportOutEffect = "ExperimentalTeleporterOutEffect";
[DataField]
public SoundSpecifier TeleportSound = new SoundPathSpecifier("/Audio/_White/Object/Devices/experimentalsyndicateteleport.ogg");
}