예제 #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;
 }
예제 #2
0
 public Human(string name, ISecretWeapon weapon)
 {
     Name    = name;
     _weapon = weapon;
 }
예제 #3
0
 public Samurai(string name, ISecretWeapon weapon) : base(name, weapon)
 {
     Health = 200;
     Count += 1;
 }
예제 #4
0
 public Wizard(string name, ISecretWeapon weapon) : base(name, weapon)
 {
     Health       = 50;
     Intelligence = 25;
 }
예제 #5
0
 public Ninja(string name, ISecretWeapon weapon) : base(name, weapon)
 {
     Dexterity = 175;
 }