示例#1
0
文件: Bonus.cs 项目: rcmayhew/DMtools
 public Bonus()
 {
     this.level          = 1;
     this.proficiency    = new Proficiency(Levels.untrained, 1);
     this.circumstantial = 0;
     this.item           = 0;
     this.status         = 0;
     this.untyped        = 0;
 }
示例#2
0
文件: Bonus.cs 项目: rcmayhew/DMtools
 public Bonus(Levels pro, int level, int attribute, int cir = 0, int ite = 0, int stat = 0, int unty = 0)
 {
     this.level          = level;
     this.proficiency    = new Proficiency(pro, level);
     this.attribute      = attribute;
     this.circumstantial = cir;
     this.item           = ite;
     this.status         = stat;
     this.untyped        = unty;
 }