21
Content.Server/Mousetrap/MousetrapComponent.cs
Normal file
21
Content.Server/Mousetrap/MousetrapComponent.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Content.Server.Mousetrap;
|
||||
|
||||
[RegisterComponent]
|
||||
public sealed class MousetrapComponent : Component
|
||||
{
|
||||
[ViewVariables]
|
||||
public bool IsActive;
|
||||
|
||||
/// <summary>
|
||||
/// Set this to change where the
|
||||
/// inflection point in the scaling
|
||||
/// equation will occur.
|
||||
/// The default is 10.
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("massBalance")]
|
||||
public int MassBalance = 10;
|
||||
|
||||
[DataField("ignoreDamageIfInventorySlotsFilled")]
|
||||
public List<string> IgnoreDamageIfSlotFilled = new();
|
||||
}
|
||||
Reference in New Issue
Block a user