2024-10-26 18:18:30 +03:00
|
|
|
using Content.Server._CP14.Objectives.Systems;
|
|
|
|
|
using Content.Server._CP14.StealArea;
|
2024-08-08 16:17:50 +03:00
|
|
|
using Content.Server.Objectives.Systems;
|
|
|
|
|
using Content.Server.Thief.Systems;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Objectives.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An abstract component that allows other systems to count adjacent objects as "stolen" when controlling other systems
|
|
|
|
|
/// </summary>
|
2024-10-26 18:18:30 +03:00
|
|
|
[RegisterComponent, Access(typeof(StealConditionSystem), typeof(ThiefBeaconSystem), typeof(CP14CurrencyCollectConditionSystem), typeof(CP14StealAreaAutoJobConnectSystem))] //CP14 add currency condition access
|
2024-08-08 16:17:50 +03:00
|
|
|
public sealed partial class StealAreaComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[DataField]
|
|
|
|
|
public bool Enabled = true;
|
|
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public float Range = 1f;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// all the minds that will be credited with stealing from this area.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField]
|
|
|
|
|
public HashSet<EntityUid> Owners = new();
|
|
|
|
|
}
|