using Content.Shared.Tools;
using Robust.Shared.Prototypes;
namespace Content.Server.Construction.Components;
///
/// Used for something that can be refined by welder.
/// For example, glass shard can be refined to glass sheet.
///
[RegisterComponent]
public sealed partial class WelderRefinableComponent : Component
{
[DataField]
public HashSet? RefineResult = new();
[DataField]
public float RefineTime = 2f;
[DataField]
public float RefineFuel;
[DataField]
public ProtoId QualityNeeded = "Welding";
}