using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;

namespace SessionCompanion.Database.Tables
{
    public class Wisdom : BaseEntity
    {
        [ForeignKey(nameof(Character))]
        public int CharacterId { get; set; }
        public virtual Character Character { get; set; }

        public int Value { get; set; }
        public int Modification { get; set; }
        public int SavingThrows { get; set; }
        public bool CanSaveThrows { get; set; }
        public int AnimalHandling { get; set; }
        public bool CanAnimalHandling { get; set; }
        public int Insight { get; set; }
        public bool CanInsight { get; set; }
        public int Medicine { get; set; }
        public bool CanMedicine { get; set; }
        public int Perception { get; set; }
        public bool CanPerception { get; set; }
        public int Survival { get; set; }
        public bool CanSurvival { get; set; }
    }
}