public sysDamageRoll(string n, string nl, int die, int number, int bonus, sysBaseStatistic per, int perdivide) : base()
 {
     this.Die         = die;
     this.Number      = number;
     this.Bonus       = bonus;
     this.BonusPer    = per;
     this.PerDivide   = perdivide;
     this.LongName    = toStringImpl();
     this.Name        = LongName.Substring(0, Math.Min(nwdbConst.LEN_SHORT, LongName.Length));
     this.ItemsDamage = new List <sysItemType>();
 }
 public sysStatisticStackingType(string n, string nl, sysBaseStatistic st) : base(n, nl)
 {
     this.Statistic = st;
 }