13 lines
443 B
C#
13 lines
443 B
C#
namespace Content.Server._DV.CosmicCult.Components;
|
|
|
|
/// <summary>
|
|
/// Objective condition that requires the player to be a rogue ascended and corrupt other players' minds.
|
|
/// Requires <see cref="NumberObjectiveComponent"/> to function.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(RogueAscendedObjectiveSystem))]
|
|
public sealed partial class RogueInfectionConditionComponent : Component
|
|
{
|
|
[DataField]
|
|
public int MindsCorrupted;
|
|
}
|