Blueprints (#31138)

* Blueprints

* Update tables_loot.yml

* doink

* mark as required
This commit is contained in:
Nemanja
2024-08-25 08:06:50 -04:00
committed by GitHub
parent f03fc585ba
commit 85b7d183bd
15 changed files with 259 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
using Content.Shared.Research.Prototypes;
using Content.Shared.Research.Systems;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared.Research.Components;
/// <summary>
/// This is used for an item that is inserted directly into a given lathe to provide it with a recipe.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(BlueprintSystem))]
public sealed partial class BlueprintComponent : Component
{
/// <summary>
/// The recipes that this blueprint provides.
/// </summary>
[DataField(required: true)]
public HashSet<ProtoId<LatheRecipePrototype>> ProvidedRecipes = new();
}