2021-09-06 15:49:44 +02:00
|
|
|
|
using Content.Server.Kitchen.EntitySystems;
|
|
|
|
|
|
using Content.Shared.Chemistry.Components;
|
|
|
|
|
|
using Robust.Shared.Analyzers;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Kitchen.Components
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Tag component that denotes an entity as Extractable
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[Friend(typeof(ReagentGrinderSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class ExtractableComponent : Component
|
2021-09-06 15:49:44 +02:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
2022-02-01 19:35:40 -08:00
|
|
|
|
[DataField("juiceSolution")]
|
2021-11-02 05:20:14 +01:00
|
|
|
|
public Solution? JuiceSolution;
|
2021-09-06 15:49:44 +02:00
|
|
|
|
|
2022-02-01 19:35:40 -08:00
|
|
|
|
[ViewVariables]
|
2021-11-02 05:20:14 +01:00
|
|
|
|
[DataField("grindableSolutionName")]
|
2021-09-06 15:49:44 +02:00
|
|
|
|
public string? GrindableSolution;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|