Exemplo n.º 1
0
 public Knight(string name, int abilityPoints, int healthPoints, int level)
 {
     this.name          = name;
     this.abilityPoints = 100;
     this.healthPoints  = 120;
     this.level         = 1;
     this.faction       = "Melee";
     this.bodyArmor     = new Chainlink();
     this.weapon        = new Hammer();
 }
Exemplo n.º 2
0
 public Knight(string name, int level, int healthPoints)
 {
     this.name          = name;
     this.level         = level;
     this.healthPoints  = healthPoints;
     this.fatigue       = DEFAULT_FATIGUE;
     this.abilityPoints = DEFAULT_ABILITYPOINTS;
     this.faction       = "Melee";
     this.weapon        = new Hammer();
     this.bodyArmor     = new Chainlink();
 }
Exemplo n.º 3
0
 public void SetNextChainlink(Chainlink c)
 {
     nextInChain = c;
 }