* 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
18 lines
435 B
C#
18 lines
435 B
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._CP14.ResearchTable;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class CP14ResearchTableComponent : Component
|
|
{
|
|
[DataField]
|
|
public float ResearchSpeed = 3f;
|
|
|
|
[DataField]
|
|
public float ResearchRadius = 0.5f;
|
|
|
|
[DataField]
|
|
public SoundSpecifier ResearchSound = new SoundCollectionSpecifier("PaperScribbles");
|
|
}
|