2023-04-29 23:50:31 +02:00
|
|
|
using Content.Shared.Tools;
|
2022-08-31 01:24:51 -07:00
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Tools.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class LatticeCuttingComponent : Component
|
2022-08-31 01:24:51 -07:00
|
|
|
{
|
|
|
|
|
[DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer<ToolQualityPrototype>))]
|
|
|
|
|
public string QualityNeeded = "Cutting";
|
|
|
|
|
|
|
|
|
|
[DataField("delay")]
|
2023-04-29 23:50:31 +02:00
|
|
|
public float Delay = 1f;
|
2022-08-31 01:24:51 -07:00
|
|
|
|
|
|
|
|
[DataField("vacuumDelay")]
|
|
|
|
|
public float VacuumDelay = 1.75f;
|
2022-11-16 20:22:11 +01:00
|
|
|
}
|