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.
This commit is contained in:
Aviu00
2024-04-04 22:45:03 +09:00
committed by GitHub
parent 4938553945
commit e3ee4a8d3b
6 changed files with 116 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
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;
}