2024-01-27 15:19:52 +03:00
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
using Robust.Shared.Utility;
|
|
|
|
|
|
|
2024-01-28 18:18:54 +07:00
|
|
|
|
namespace Content.Server._White.BecomeDustOnDeathSystem;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class BecomeDustOnDeathComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataField("sprite", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
|
|
|
|
public string SpawnOnDeathPrototype = "Ectoplasm";
|
|
|
|
|
|
}
|