* temp tweak * add metall bars * melting molds * add sawing molds table * sawing sounds * fix
20 lines
519 B
C#
20 lines
519 B
C#
using Content.Shared._CP14.Workbench.Prototypes;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._CP14.Workbench;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(CP14WorkbenchSystem))]
|
|
public sealed partial class CP14WorkbenchComponent : Component
|
|
{
|
|
[DataField]
|
|
public float CraftSpeed = 1f;
|
|
|
|
[DataField]
|
|
public List<ProtoId<CP14WorkbenchRecipePrototype>> Recipes = new();
|
|
|
|
[DataField]
|
|
public SoundSpecifier CraftSound = new SoundCollectionSpecifier("CP14Hammering");
|
|
}
|