namespace Content.Server.Traitor.Components; /// /// Paper with written traitor codewords on it. /// [RegisterComponent] public sealed partial class TraitorCodePaperComponent : Component { /// /// The number of codewords that should be generated on this paper. /// Will not extend past the max number of available codewords. /// [DataField] public int CodewordAmount = 1; /// /// Whether the codewords should be faked if there is no traitor gamerule set. /// [DataField] public bool FakeCodewords = true; /// /// Whether all codewords added to the round should be used. Overrides CodewordAmount if true. /// [DataField] public bool CodewordShowAll = false; }