2024-07-28 16:54:32 +00:00
|
|
|
using Content.Server.Chat.Systems;
|
|
|
|
|
|
2024-01-28 18:18:54 +07:00
|
|
|
namespace Content.Server._White.Cult.Runes.Comps;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
[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 = "";
|
2024-07-28 16:54:32 +00:00
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public InGameICChatType InvokeChatType = InGameICChatType.Whisper;
|
2024-01-27 15:19:52 +03:00
|
|
|
}
|