* - add: 10 minutes of suffering. * - fix: No monkey evolution. * - fix: Remove Absorb on rejuvenate. * - tweak: Less thick armor. * - fix: Transfer uncloneable on transform.
17 lines
351 B
C#
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;
|
|
}
|