Emags (#6738)
This commit is contained in:
16
Content.Shared/Emag/Components/EmagComponent.cs
Normal file
16
Content.Shared/Emag/Components/EmagComponent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Content.Shared.Emag.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public sealed class EmagComponent : Component
|
||||
{
|
||||
[DataField("maxCharges")]
|
||||
public int MaxCharges = 3;
|
||||
|
||||
[DataField("charges")]
|
||||
public int Charges = 3;
|
||||
|
||||
[DataField("rechargeTime")]
|
||||
public float RechargeTime = 90f;
|
||||
public float Accumulator = 0f;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user