More blood (#514)
* - add: Some construct stuff. * - add: Some rune stuff. * - add: Unvisit. * - add: Better blood rites.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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]
|
||||
public float HealModifier = 0.5f;
|
||||
|
||||
[DataField(customTypeSerializer: typeof(PrototypeIdListSerializer<CultistFactoryProductionPrototype>))]
|
||||
public List<string> BloodRites = new ()
|
||||
{
|
||||
"FactoryCultBloodSpear",
|
||||
"FactoryCultBloodBarrage"
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user