2024-07-30 00:12:49 +00:00
|
|
|
using Content.Shared._White.Cult;
|
|
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server._White.Cult.Items.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class CultRitesHandComponent : BaseMagicHandComponent
|
|
|
|
|
{
|
|
|
|
|
[DataField]
|
|
|
|
|
public SoundSpecifier HealSound = new SoundPathSpecifier("/Audio/White/Cult/rites.ogg");
|
|
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public SoundSpecifier SuckSound = new SoundPathSpecifier("/Audio/White/Cult/enter_blood.ogg");
|
|
|
|
|
|
|
|
|
|
[DataField]
|
2024-08-03 15:23:46 +00:00
|
|
|
public float HealModifier = 1f;
|
2024-07-30 00:12:49 +00:00
|
|
|
|
|
|
|
|
[DataField(customTypeSerializer: typeof(PrototypeIdListSerializer<CultistFactoryProductionPrototype>))]
|
|
|
|
|
public List<string> BloodRites = new ()
|
|
|
|
|
{
|
|
|
|
|
"FactoryCultBloodSpear",
|
|
|
|
|
"FactoryCultBloodBarrage"
|
|
|
|
|
};
|
|
|
|
|
}
|