Files
OldThink/Content.Server/_White/Cult/Runes/Comps/CultRuneBaseComponent.cs
Aviu00 edf9f243a1 Blood (#507)
* - tweak: Nerf spear.

* - tweak: Blood bolt barrage.

* - add: Cult stuff.

* - fix: Cult fixes.

* - remove: Garbage.

* - fix: Multiple pylons.

* - fix: Pylon placement fix.

* - add: Lots of cult stuff.
2024-07-28 19:54:32 +03:00

23 lines
708 B
C#

using Content.Server.Chat.Systems;
namespace Content.Server._White.Cult.Runes.Comps;
[RegisterComponent]
public sealed partial class CultRuneBaseComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("invokersMinCount")]
public uint InvokersMinCount = 1;
[ViewVariables(VVAccess.ReadWrite), DataField("gatherInvokers")]
public bool GatherInvokers = true;
[ViewVariables(VVAccess.ReadWrite), DataField("cultistGatheringRange")]
public float CultistGatheringRange = 0.7f;
[ViewVariables(VVAccess.ReadWrite), DataField("invokePhrase")]
public string InvokePhrase = "";
[DataField]
public InGameICChatType InvokeChatType = InGameICChatType.Whisper;
}