* General slime improvements * Finish morphing * oops 2x2 not 3x3 * actually lets ball - 2x3 inventory * Last two things on the todo list * .\RobustToolbox\ * JUST COMPILE * fix tests 2.0 * fix tests 3.0 * Do reviews * minor change * guideboob * more --------- Co-authored-by: Kara <lunarautomaton6@gmail.com>
19 lines
525 B
C#
19 lines
525 B
C#
using Content.Shared.Actions;
|
|
using Content.Shared.Polymorph;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Geras;
|
|
|
|
/// <summary>
|
|
/// This component assigns the entity with a polymorph action.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class GerasComponent : Component
|
|
{
|
|
[DataField] public ProtoId<PolymorphPrototype> GerasPolymorphId = "SlimeMorphGeras";
|
|
|
|
[DataField] public ProtoId<EntityPrototype> GerasAction = "ActionMorphGeras";
|
|
|
|
[DataField] public EntityUid? GerasActionEntity;
|
|
}
|