* Implant the uplink if no PDA is found * comments * tidy up loose ends * Whoops usually I start with the namespace, how did I forget it, shame shame * Consistent data type for starting TC balance, misc changes * Implant briefing, guidebook * Update AutoTraitor, add uplink, codeword and briefing parameters to TraitorRuleComponent, no pda for reinforcements * engine 5c0ce43 * pass pda to AddUplink Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * nicer string handling Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * case typo 1 Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * case typo 2 Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * case typo 3 Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * minor layout changes * removed redundant implant check * minor cleanup --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
18 lines
487 B
C#
18 lines
487 B
C#
using Content.Server.Traitor.Systems;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Traitor.Components;
|
|
|
|
/// <summary>
|
|
/// Makes the entity a traitor either instantly if it has a mind or when a mind is added.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(AutoTraitorSystem))]
|
|
public sealed partial class AutoTraitorComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The traitor profile to use
|
|
/// </summary>
|
|
[DataField]
|
|
public EntProtoId Profile = "Traitor";
|
|
}
|