Чё я нахуй сделал

This commit is contained in:
Jabak
2024-09-19 23:32:44 +03:00
parent 690e3c3256
commit da070eb023
5 changed files with 995 additions and 24 deletions

View File

@@ -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;
}