Чё я нахуй сделал
This commit is contained in:
@@ -34,3 +34,25 @@ public sealed class TTSVoicePrototype : IPrototype
|
||||
[DataField]
|
||||
public bool BorgVoice { get; }
|
||||
}
|
||||
|
||||
[Prototype("ttsBorgVoice")]
|
||||
public sealed class TTSBorgVoicePrototype : IPrototype
|
||||
{
|
||||
[IdDataField]
|
||||
public string ID { get; } = default!;
|
||||
|
||||
[DataField]
|
||||
public string Name { get; } = string.Empty;
|
||||
|
||||
[DataField(required: true)]
|
||||
public Sex Sex { get; }
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite), DataField(required: true)]
|
||||
public string Speaker { get; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Whether the species is available "at round start" (In the character editor)
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public bool RoundStart { get; } = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user