Exemplo n.º 1
0
 public Bonus()
 {
     this.level          = 1;
     this.proficiency    = new Proficiency(Levels.untrained, 1);
     this.circumstantial = 0;
     this.item           = 0;
     this.status         = 0;
     this.untyped        = 0;
 }
Exemplo n.º 2
0
 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;
 }