* delete skill trees
* Revert "delete skill trees"
This reverts commit 9d7fae73c4.
* learning refactor
* UI tweaks
* sword mastery skill
* telegraphy
* rapier mastery
* research table ui
* finish studing
* polish UI researching
* pyrokinetic
* more skill tree working
* heat adapt
* alchemist and metamagic update
* skill multiple effects support + metamagic bugg manapool
* impossible 😢
* skimitar gaming
* skimidi
* blacksmithing branch
* remove research restrictions
* remove species magic buff
* fix loc
* Update thaumaturgy.yml
* pip
* Delete skill_tree.yml
20 lines
501 B
C#
20 lines
501 B
C#
using Content.Shared._CP14.Skill.Prototypes;
|
|
using Content.Shared.DoAfter;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._CP14.ResearchTable;
|
|
|
|
public abstract class CP14SharedResearchSystem : EntitySystem
|
|
{
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed partial class CP14ResearchDoAfterEvent : DoAfterEvent
|
|
{
|
|
[DataField(required: true)]
|
|
public ProtoId<CP14SkillPrototype> Skill = default!;
|
|
|
|
public override DoAfterEvent Clone() => this;
|
|
}
|