private void CreateCellWithPercentageValue(BattleCharacter character, Const.Stats stat)
 {
     this.CreateStatsCell(stat, string.Format("{0}%", character.GetStat(stat) * 100d), character.GetStatBuffState(stat));
 }
 private void CreateCellWithDecimalValue(BattleCharacter character, Const.Stats stat)
 {
     this.CreateStatsCell(stat, character.GetStat(stat).ToString(), character.GetStatBuffState(stat));
 }