session-companion/SessionCompanion/SessionCompanion.ViewModels/IntelligenceViewModels/IntelligenceViewModel.cs

85 lines
2.3 KiB
C#
Raw Normal View History

namespace SessionCompanion.ViewModels.IntelligenceViewModels
2020-12-04 21:34:30 +01:00
{
public class IntelligenceViewModel
{
/// <summary>
/// Identyfikator inteligencji postaci
/// </summary>
2020-12-04 21:34:30 +01:00
public int Id { get; set; }
/// <summary>
/// Identyfikator postaci
/// </summary>
2020-12-04 21:34:30 +01:00
public int CharacterId { get; set; }
/// <summary>
/// Wartość inteligencji
/// </summary>
2020-12-04 21:34:30 +01:00
public int Value { get; set; }
/// <summary>
/// Modyfikator rzutów
/// </summary>
2020-12-04 21:34:30 +01:00
public int Modification { get; set; }
/// <summary>
/// Modyfikator rzutów obronnych
/// </summary>
2020-12-04 21:34:30 +01:00
public int SavingThrows { get; set; }
/// <summary>
/// Czy postać posiada biegłość w inteligencji
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanSaveThrows { get; set; }
/// <summary>
/// Wartość umiejętności wiedzy tejemnej
/// </summary>
2020-12-04 21:34:30 +01:00
public int Arcana { get; set; }
/// <summary>
/// Czy postać posiada biegłość w wiedzy tejemnej
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanArcana { get; set; }
/// <summary>
/// Wartość umiejętności historii
/// </summary>
2020-12-04 21:34:30 +01:00
public int History { get; set; }
/// <summary>
/// Czy postać posiada biegłość w historii
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanHistory { get; set; }
/// <summary>
/// Wartość umiejętności śledztwa
/// </summary>
2020-12-04 21:34:30 +01:00
public int Investigation { get; set; }
/// <summary>
/// Czy postać posiada biegłość w śledztwie
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanInvestigation { get; set; }
/// <summary>
/// Wartość umiejętności przyrody
/// </summary>
2020-12-04 21:34:30 +01:00
public int Nature { get; set; }
/// <summary>
/// Czy postać posiada biegłość w przyrodzie
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanNature { get; set; }
/// <summary>
/// Wartość umiejętności religii
/// </summary>
2020-12-04 21:34:30 +01:00
public int Religion { get; set; }
/// <summary>
/// Czy postać posiada biegłość w religii
/// </summary>
2020-12-04 21:34:30 +01:00
public bool CanReligion { get; set; }
}
}