2022-10-15 18:06:01 -04:00
|
|
|
|
using Content.Shared.Tag;
|
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
|
2023-08-30 21:46:11 -07:00
|
|
|
|
namespace Content.Shared.Mind.Components;
|
2022-10-15 18:06:01 -04:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class TransferMindOnGibComponent : Component
|
2022-10-15 18:06:01 -04:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("targetTag", customTypeSerializer: typeof(PrototypeIdSerializer<TagPrototype>))]
|
|
|
|
|
|
public string TargetTag = "MindTransferTarget";
|
|
|
|
|
|
}
|