Files
OldThink/Content.Server/Changeling/TransformStungComponent.cs
Aviu00 e3ee4a8d3b Transform sting nerf (#269)
* - add: 10 minutes of suffering.

* - fix: No monkey evolution.

* - fix: Remove Absorb on rejuvenate.

* - tweak: Less thick armor.

* - fix: Transfer uncloneable on transform.
2024-04-04 16:45:03 +03:00

17 lines
351 B
C#

using Content.Shared.Changeling;
namespace Content.Server.Changeling;
[RegisterComponent]
public sealed partial class TransformStungComponent : Component
{
[ViewVariables]
public HumanoidData OriginalHumanoidData;
[DataField]
public TimeSpan Duration = TimeSpan.FromMinutes(10);
[ViewVariables]
public float Accumulator;
}