* init basic skill system * add skill requirement to advanced melee weapon * working hard * more hard work * shot skill issue * Now the skills give you the components * add job special autolearning skills * traits recreating * some tweaks * remove bg and components for now * sharpening now require skills * add alchemist role on maps * pestle skill issue
15 lines
465 B
C#
15 lines
465 B
C#
using Content.Shared._CP14.Skills.Prototypes;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._CP14.Skills.Components;
|
|
|
|
/// <summary>
|
|
/// a list of skills learned by this entity
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(SharedCP14SkillSystem))]
|
|
public sealed partial class CP14SkillsStorageComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadOnly)]
|
|
public List<ProtoId<CP14SkillPrototype>> Skills { get; private set; }= new();
|
|
}
|