Exemplo n.º 1
0
 public Human(string name, ISecretWeapon weapon, int str, int intel, int dex, int hp) : this(name, weapon)
 {
     Strength     = str;
     Intelligence = intel;
     Dexterity    = dex;
     Health       = hp;
 }
Exemplo n.º 2
0
 public Human(string name, ISecretWeapon weapon)
 {
     Name    = name;
     _weapon = weapon;
 }
Exemplo n.º 3
0
 public Samurai(string name, ISecretWeapon weapon) : base(name, weapon)
 {
     Health = 200;
     Count += 1;
 }
Exemplo n.º 4
0
 public Wizard(string name, ISecretWeapon weapon) : base(name, weapon)
 {
     Health       = 50;
     Intelligence = 25;
 }
Exemplo n.º 5
0
 public Ninja(string name, ISecretWeapon weapon) : base(name, weapon)
 {
     Dexterity = 175;
 }