mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
29 lines
731 B
C#
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");
|
|
}
|