Files
OldThink/Content.Shared/_White/Chemistry/NarcoticEffectComponent.cs
CaypenNow 9581c466b9 Tweaks (#247)
* fix: stimulator now have rainbow effect

* tweak: botany return

* tweak: up delay

* tweak: change delay
2024-03-27 07:35:15 +03:00

26 lines
601 B
C#

using System.Threading;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Chemistry;
/// <summary>
/// This is used for...
/// </summary>
[RegisterComponent]
public sealed partial class NarcoticEffectComponent : Component
{
[ViewVariables(VVAccess.ReadOnly), DataField]
public List<int> TimerInterval = new() { 8000, 12000, 10000, 12500, 10500 };
[ViewVariables(VVAccess.ReadOnly), DataField]
public List<int> SlurTime = new() { 35, 60, 80, 90, 45 };
}
[Serializable, NetSerializable]
public enum NarcoticEffects
{
LieDown,
Shake,
LieDownAndShake
}