using Content.Server.RoundEnd;
using Content.Shared.Random;
using Robust.Shared.Prototypes;
namespace Content.Server._White.Wizard;
/// <summary>
/// This is used for...
/// </summary>
[RegisterComponent]
public sealed partial class WizardRuleComponent : Component
{
public readonly List<EntityUid> WizardMinds = new();
public readonly RoundEndBehavior RoundEndBehavior = RoundEndBehavior.InstantEnd;
[DataField]
public string RoundEndTextSender = "comms-console-announcement-title-centcom";
public string RoundEndTextShuttleCall = "wizard-no-more-threat-announcement-shuttle-call";
public string RoundEndTextAnnouncement = "wizard-no-more-threat-announcement";
public TimeSpan EvacShuttleTime = TimeSpan.FromMinutes(5);
public ProtoId<WeightedRandomPrototype> ObjectiveGroup = "WizardObjectiveGroups";
}