public Skills(AbilityMod abm)
        {
            //Str
            this.Athletics = abm.STR;

            //Dex
            this.SleightofHand = abm.DEX;
            this.Stealth       = abm.DEX;

            //Con

            //Int
            this.Arcana        = abm.INT;
            this.History       = abm.INT;
            this.Nature        = abm.INT;
            this.Religion      = abm.INT;
            this.Investigation = abm.INT;

            //Wis
            this.AnimalHandling = abm.WIS;
            this.Insight        = abm.WIS;
            this.Medicine       = abm.WIS;
            this.Perception     = abm.WIS;
            this.Survival       = abm.WIS;

            //Cha
            this.Deception    = abm.CHA;
            this.Intimidation = abm.CHA;
            this.Performance  = abm.CHA;
            this.Persuasion   = abm.CHA;
        }
 public Unit()
 {
     Ini();
     //this.hitDice = hitDice;
     this.abm = new AbilityMod(ab);
 }