* jesus * okay. * OOPS * ok * ok Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * ok * Update Resources/Prototypes/Objectives/paradoxClone.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/Objectives/base_objectives.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * m * ok * ok --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
24 lines
771 B
C#
24 lines
771 B
C#
using Content.Server.Objectives.Systems;
|
|
|
|
namespace Content.Server.Objectives.Components;
|
|
|
|
/// <summary>
|
|
/// Requires that a target dies or, if <see cref="RequireDead"/> is false, is not on the emergency shuttle.
|
|
/// Depends on <see cref="TargetObjectiveComponent"/> to function.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(KillPersonConditionSystem))]
|
|
public sealed partial class KillPersonConditionComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Whether the target must be dead
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public bool RequireDead = false;
|
|
|
|
/// <summary>
|
|
/// Whether the target must not be on evac
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public bool RequireMaroon = false;
|
|
}
|