//Raw Data
 public BaseStats(int MaxHp, atribStr Str, atribAgi Agi, atribSta Sta, atribInt Intel, atribSpir Spir, atribArmor Armor, SecondBar secondBar)
 {
     this.maxHP = MaxHp;
     this.str = Str;
     this.agi = Agi;
     this.sta = Sta;
     this.intel = Intel;
     this.spir = Spir;
     this.armor = Armor;
     this._2ndBar = secondBar;
 }
 private void FillSecondBar(XmlNode secondBar)
 {
     this._2ndBar = new SecondBar(secondBar);
 }