21 lines
558 B
C#
21 lines
558 B
C#
using Content.Shared.Chemistry.Reagent;
|
|
using Content.Shared.FixedPoint;
|
|
|
|
namespace Content.Server.Power.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class RiggableComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("isRigged")]
|
|
public bool IsRigged;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("solution")]
|
|
public string Solution = "battery";
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("reagent")]
|
|
public ReagentQuantity RequiredQuantity = new("Plasma", FixedPoint2.New(5), null);
|
|
}
|