* - 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.
23 lines
708 B
C#
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;
|
|
}
|